mirror of
https://github.com/DirectoryLister/DirectoryLister.git
synced 2025-08-18 20:02:58 +02:00
Unescape modal title text before displaying
This commit is contained in:
@@ -7,7 +7,7 @@ export default () => ({
|
||||
visible: false,
|
||||
|
||||
get title() {
|
||||
return this.filePath.split('/').pop();
|
||||
return decodeURI(this.filePath.split('/').pop());
|
||||
},
|
||||
|
||||
get loading() {
|
||||
|
Reference in New Issue
Block a user