#74 - Integration with Bookmarks core plugin and support for indirect drag & drop arrangement

- fix suggested by github code check
This commit is contained in:
SebastianMC 2023-09-26 19:58:00 +02:00
parent 0031ee3a83
commit bb2b510ae8
1 changed files with 1 additions and 1 deletions

View File

@ -516,7 +516,7 @@ export default class CustomSortPlugin extends Plugin {
} }
const pathToFlatString = (path: string): string => { const pathToFlatString = (path: string): string => {
return path.replace('/','_').replace('\\', '_') return path.replace(/\//g,'_').replace(/\\/g, '_')
} }
class CustomSortSettingTab extends PluginSettingTab { class CustomSortSettingTab extends PluginSettingTab {