#74 - Integration with Bookmarks core plugin and support for indirect drag & drop arrangement
- fix suggested by github code check
This commit is contained in:
parent
0031ee3a83
commit
bb2b510ae8
|
@ -516,7 +516,7 @@ export default class CustomSortPlugin extends Plugin {
|
|||
}
|
||||
|
||||
const pathToFlatString = (path: string): string => {
|
||||
return path.replace('/','_').replace('\\', '_')
|
||||
return path.replace(/\//g,'_').replace(/\\/g, '_')
|
||||
}
|
||||
|
||||
class CustomSortSettingTab extends PluginSettingTab {
|
||||
|
|
Loading…
Reference in New Issue