Unescape modal title text before displaying

This commit is contained in:
Chris Kankiewicz
2022-12-01 08:26:55 -07:00
parent a931d10fa1
commit 1535dc7c5d

View File

@@ -7,7 +7,7 @@ export default () => ({
visible: false,
get title() {
return this.filePath.split('/').pop();
return decodeURI(this.filePath.split('/').pop());
},
get loading() {