refactor(ui): always display the buttons bar
authorJérôme Benoit <jerome.benoit@sap.com>
Thu, 7 Mar 2024 22:17:32 +0000 (23:17 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Thu, 7 Mar 2024 22:17:32 +0000 (23:17 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
ui/web/src/composables/Utils.ts
ui/web/src/views/ChargingStationsView.vue

index 8db8851ad646819e43a6fa4dbb53bf245d06badd..792e4481d4b944775d2032e27ee8c7f4a758d194 100644 (file)
@@ -35,15 +35,15 @@ export const convertToInt = (value: unknown): number => {
   return changedValue
 }
 
-export const setToLocalStorage = <T>(key: string, value: T): void => {
-  localStorage.setItem(key, JSON.stringify(value))
-}
-
 export const getFromLocalStorage = <T>(key: string, defaultValue: T): T => {
   const item = localStorage.getItem(key)
   return item != null ? (JSON.parse(item) as T) : defaultValue
 }
 
+export const setToLocalStorage = <T>(key: string, value: T): void => {
+  localStorage.setItem(key, JSON.stringify(value))
+}
+
 export const deleteFromLocalStorage = (key: string): void => {
   localStorage.removeItem(key)
 }
index 7b4f8a53f74fff9e55055860ad92c01fa439c719..0b57bb9d8ad002c3035287bacadc9c1a265e64c6 100644 (file)
@@ -353,6 +353,8 @@ const stopSimulator = (): void => {
 #buttons-container {
   display: flex;
   flex-direction: row;
+  position: sticky;
+  top: 0;
 }
 
 .simulator-start-button {