Skip to content

Commit

Permalink
fix font size (#449)
Browse files Browse the repository at this point in the history
* fix font size

* apply formatting changes

---------

Co-authored-by: beyond2void <[email protected]>
  • Loading branch information
beyond2void and beyond2void authored Oct 19, 2023
1 parent 6be46e7 commit 617119c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meta_configurator/src/components/code-editor/AceEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ onMounted(() => {
const fontSize = useSettingsStore().settingsData.codeEditor.fontSize;

if (editor.value && fontSize) {
editor.value.setFontSize(fontSize.toString());
editor.value.setFontSize(fontSize.toString() + 'px');
}
});

Expand Down

0 comments on commit 617119c

Please sign in to comment.