Fix initial value of iconFile

This commit is contained in:
Girish Ramakrishnan
2025-09-17 11:12:00 +02:00
parent 51d0658bdb
commit 8a6016376c
2 changed files with 2 additions and 2 deletions

View File

@@ -52,7 +52,7 @@ const isValid = computed(() => {
return true;
});
let iconFile = null;
let iconFile = 'src';
function onIconChanged(file) {
iconFile = file;
}