Skip to content

Commit 6d53186

Browse files
authored
Merge pull request #880 from janfaracik/use-icon-file-name
Override 'getIconFileName' rather than setting 'getIconClassName'
2 parents d0f0248 + e628c3b commit 6d53186

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

plugin/src/main/java/org/jenkinsci/plugins/workflow/cps/Snippetizer.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -574,10 +574,9 @@ public static class LocalAction extends Snippetizer {
574574
return Messages.Pipeline_Syntax();
575575
}
576576

577-
public String getIconClassName() {
578-
return "icon-help";
577+
@Override public String getIconFileName() {
578+
return "symbol-help-circle";
579579
}
580-
581580
}
582581

583582
private static final Logger LOGGER = Logger.getLogger(Snippetizer.class.getName());

0 commit comments

Comments
 (0)