refactor(ui): switch to named export
authorJérôme Benoit <jerome.benoit@sap.com>
Sun, 16 Jul 2023 18:22:41 +0000 (20:22 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Sun, 16 Jul 2023 18:22:41 +0000 (20:22 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
ui/web/src/components/charging-stations/CSConnector.vue
ui/web/src/composables/UIClient.ts
ui/web/src/views/ChargingStationsView.vue

index 3cf324c977817b370134885e728c753446932b39..0a9357ee60641629d6c8da008b5dbcb771aab512 100644 (file)
@@ -27,7 +27,7 @@
 import Button from '../buttons/Button.vue';
 // import IdTagInputModal from './IdTagInputModal.vue';
 import type { ConnectorStatus } from '@/types';
-import UIClient from '@/composables/UIClient';
+import { UIClient } from '@/composables/UIClient';
 // import { compose } from '@/composables/Utils';
 
 const props = defineProps<{
index ccd16c215565855d99ec0fa400bb7da0f8dd89bc..006b60b537d9d975e080b44f88dc30538f299d5e 100644 (file)
@@ -14,7 +14,7 @@ type ResponseHandler = {
   reject: (reason?: unknown) => void;
 };
 
-export default class UIClient {
+export class UIClient {
   private static instance: UIClient | null = null;
 
   private ws!: WebSocket;
index b4f4c39f56d7a3073c57d8e365c5fa3a0aa7d40c..19b6dfe362109619ba04a2dddfaea76032842112 100644 (file)
@@ -22,7 +22,7 @@ import CSTable from '@/components/charging-stations/CSTable.vue';
 import type { ChargingStationData } from '@/types';
 import Container from '@/components/Container.vue';
 import ReloadButton from '@/components/buttons/ReloadButton.vue';
-import UIClient from '@/composables/UIClient';
+import { UIClient } from '@/composables/UIClient';
 
 const UIClientInstance = UIClient.getInstance();