Update the JS/CSS files for the new Prettier/Stylelint versions

This commit is contained in:
Tim van der Meij 2024-07-13 16:20:22 +02:00
parent 49eba2f892
commit c77b97daff
No known key found for this signature in database
GPG key ID: 8C3FD2925A5F2762
5 changed files with 6 additions and 5 deletions

View file

@ -482,7 +482,7 @@ class AppOptions {
}
options[name] = defaultOnly
? defaultOption.value
: userOptions[name] ?? defaultOption.value;
: (userOptions[name] ?? defaultOption.value);
}
return options;
}