Commit 050ea9a3 authored by Diego Barreiro's avatar Diego Barreiro Committed by Jeffrey Schiller

FIX: description should be helpUrl

parent d7089b86
......@@ -1144,7 +1144,7 @@ public abstract class ComponentProcessor extends AbstractProcessor {
private void processDescriptions(ComponentInfo info) {
final String name = info.displayName;
info.description = info.description.replaceAll(TYPE_PLACEHOLDER, name);
info.helpUrl = info.description.replaceAll(TYPE_PLACEHOLDER, name);
info.helpUrl = info.helpUrl.replaceAll(TYPE_PLACEHOLDER, name);
for (Property property : info.properties.values()) {
property.description = property.description.replaceAll(TYPE_PLACEHOLDER, name);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment