refactor(ui): put all main actions to the same bar
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / buttons / ToggleButton.vue
index dd1805ca11a1e43dde08d3bb726a018177f88b29..8cdd1de7d4bd22e5d26968d0613288ffe8e29c99 100644 (file)
@@ -26,7 +26,7 @@ const state = ref({
 })
 
 const click = (): void => {
-  if (props.shared) {
+  if (props.shared === true) {
     for (const key in localStorage) {
       if (key !== id && key.startsWith('shared-toggle-button-')) {
         setToLocalStorage<boolean>(key, false)