diff --git a/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/CommentEditor/CommentEditor.vue b/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/CommentEditor/CommentEditor.vue index 7ebd78cf1..d6019fabe 100644 --- a/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/CommentEditor/CommentEditor.vue +++ b/src/Bundle/ChillMainBundle/Resources/public/vuejs/_components/CommentEditor/CommentEditor.vue @@ -24,7 +24,6 @@ const toggleButtonClass = computed(() => { }); const toggleEditor = () => { - console.log("toggleEditor"); let newValue; newValue = kind.value === "simple" ? "rich" : "simple"; @@ -32,8 +31,6 @@ const toggleEditor = () => { window.localStorage.setItem(EDITOR_MODE_KEY, newValue); window.dispatchEvent(new Event("toggleEditorKind")); - - console.log("new storage", window.localStorage.getItem(EDITOR_MODE_KEY)); }; const onKindChange = function (/* event: StorageEvent | Event */) { @@ -96,6 +93,8 @@ onUnmounted(function () {