Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appinventor-sources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
appinventor-sources
Commits
050ea9a3
Commit
050ea9a3
authored
Jan 24, 2020
by
Diego Barreiro
Committed by
Jeffrey Schiller
Jan 28, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FIX: description should be helpUrl
parent
d7089b86
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
appinventor/components/src/com/google/appinventor/components/scripts/ComponentProcessor.java
...le/appinventor/components/scripts/ComponentProcessor.java
+1
-1
No files found.
appinventor/components/src/com/google/appinventor/components/scripts/ComponentProcessor.java
View file @
050ea9a3
...
...
@@ -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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment