Skip to content

Commit

Permalink
fix eclipse-theia#7680 remove css escape for html class attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
kesslerdev committed Jun 24, 2020
1 parent 3eb0678 commit a736574
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## v1.3.0

- [scm] added support for multi-select in the Source Control view [#7900](https://github.com/eclipse-theia/theia/pull/7900)
- [plugin-ext]

Breaking Changes:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ export class PluginIconTheme extends PluginIconThemeDefinition implements IconTh
icon += className;
}
}
return icon;
return icon.replace(/\\./g, '.');
}

protected getClassNames(element: URI | URIIconReference | FileStat | FileStatNode | WorkspaceRootNode): string[] {
Expand Down

0 comments on commit a736574

Please sign in to comment.