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
Signed-off-by: Jean-François Monnier <kessler.dev@gmail.com>
  • Loading branch information
kesslerdev committed Jun 30, 2020
1 parent 3eb0678 commit 42edee4
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] fix file-icon incorrectly displays name icon with a dot in name [#7680](https://github.com/eclipse-theia/theia/pull/7680)

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 42edee4

Please sign in to comment.