From 3df1d97040b826c441cd363bba0fcf6f6cb0da50 Mon Sep 17 00:00:00 2001 From: DavidZ Date: Thu, 18 Jan 2024 23:52:41 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Sort=20imports?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 2 ++ src/components/ActionLabelThumbnailPreview.vue | 1 + src/components/ActionThumbnailPreview.vue | 1 + src/components/Drawer.vue | 2 ++ src/components/DrawerAnnotationControl.vue | 1 + src/components/DrawerVideoControl.vue | 1 + src/components/Layout.vue | 2 ++ src/components/MonacoCodeEditor.vue | 3 +-- src/components/VideoLoaderV1.vue | 1 + src/components/VideoLoaderV2.vue | 1 + src/hooks/annotation.js | 1 + src/hooks/frameIndicator.js | 3 ++- src/libs/annotationlib.js | 2 +- src/libs/utils.js | 1 + src/pages/annotation/Annotation.vue | 3 ++- src/pages/annotation/CanvasPanel.vue | 5 +++-- src/pages/annotation/ControlPanel.vue | 1 + src/pages/annotation/ObjectTable.vue | 1 + src/pages/annotation/RegionTable.vue | 1 + src/pages/annotation/SkeletonTable.vue | 1 + src/pages/annotation/components/KeyframeTable.vue | 1 + src/pages/annotation/components/TableBase.vue | 1 + src/pages/configuration/ActionLabelTable.vue | 3 ++- src/pages/configuration/Configuration.vue | 4 +++- src/pages/configuration/ObjectLabelTable.vue | 1 + src/pages/configuration/SkeletonTypeTable.vue | 2 ++ src/pages/configuration/components/SkeletonPreview.vue | 1 + src/pages/configuration/components/TableBase.vue | 3 ++- src/pages/configuration/components/TableEditor.vue | 4 +++- src/pages/preference/Preference.vue | 1 + src/router/index.js | 3 ++- src/store/annotation.js | 3 ++- src/store/configuration.js | 1 + 33 files changed, 49 insertions(+), 13 deletions(-) diff --git a/src/App.vue b/src/App.vue index d89bbf7..14a0da4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -14,12 +14,14 @@ import { useFavicon, usePreferredDark } from '@vueuse/core' import { storeToRefs } from 'pinia' import { useQuasar } from 'quasar' import { computed } from 'vue' + import Layout from '~/components/Layout.vue' import { useAnnotation } from '~/hooks/annotation.js' import utils from '~/libs/utils.js' import { useAnnotationStore } from '~/store/annotation.js' import { useConfigurationStore } from '~/store/configuration.js' import { usePreferenceStore } from '~/store/preference.js' + import { useMainStore } from './store/index.js' const mainStore = useMainStore() diff --git a/src/components/ActionLabelThumbnailPreview.vue b/src/components/ActionLabelThumbnailPreview.vue index 9a5a93e..b850946 100644 --- a/src/components/ActionLabelThumbnailPreview.vue +++ b/src/components/ActionLabelThumbnailPreview.vue @@ -52,6 +52,7 @@