We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50f908d commit 0a5b091Copy full SHA for 0a5b091
src/pages/themeSetting/themeSetting.js
@@ -194,7 +194,9 @@ console.log(message);`);
194
*/
195
function setEditorTheme({ caption, theme }) {
196
if (appSettings.value.appTheme.toLowerCase() === "system") {
197
- alert("App theme is set to 'System'. Changing the editor theme will not affect the editor appearance.");
+ alert(
198
+ "App theme is set to 'System'. Changing the editor theme will not affect the editor appearance.",
199
+ );
200
}
201
editorManager.editor.setTheme(theme);
202
editor.setTheme(theme); // preview
0 commit comments