Skip to content

Commit

Permalink
close #157
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidZhang73 committed May 5, 2022
1 parent 01420d6 commit afdee60
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/components/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,7 @@
<template v-if="annotationStore.hasVideo">
<VideoLoaderV2 v-if="useV2"/>
<VideoLoaderV1 v-else/>
<ActionThumbnailPreview v-if="preferenceStore.actions"/>
</template>
<ActionLabelThumbnailPreview v-if="preferenceStore.actions"/>
<router-view></router-view>
</q-page>
</q-page-container>
Expand All @@ -106,8 +104,6 @@
<script setup>
import { storeToRefs } from 'pinia'
import { computed } from 'vue'
import ActionThumbnailPreview from '~/components/ActionThumbnailPreview.vue'
import ActionLabelThumbnailPreview from '~/components/ActionLabelThumbnailPreview.vue'
import VideoLoaderV1 from '~/components/VideoLoaderV1.vue'
import VideoLoaderV2 from '~/components/VideoLoaderV2.vue'
import { useAnnotationStore } from '~/store/annotation.js'
Expand Down
2 changes: 2 additions & 0 deletions src/pages/annotation/ActionTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@
</q-tr>
</template>
</q-table>
<ActionThumbnailPreview/>
</template>

<script setup>
Expand All @@ -227,6 +228,7 @@ import utils from '~/libs/utils.js'
import { useAnnotationStore } from '~/store/annotation.js'
import { useConfigurationStore } from '~/store/configuration.js'
import { useMainStore } from '~/store/index.js'
import ActionThumbnailPreview from '~/components/ActionThumbnailPreview.vue'
const annotationStore = useAnnotationStore()
const configurationStore = useConfigurationStore()
Expand Down
2 changes: 2 additions & 0 deletions src/pages/configuration/ActionLabelTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
</q-td>
</template>
</TableBase>
<ActionLabelThumbnailPreview/>
</template>

<script setup>
Expand All @@ -57,6 +58,7 @@ import { computed } from 'vue'
import utils from '~/libs/utils.js'
import TableBase from '~/pages/configuration/components/TableBase.vue'
import { useConfigurationStore } from '~/store/configuration.js'
import ActionLabelThumbnailPreview from '~/components/ActionLabelThumbnailPreview.vue'
// Action
const columnList = [
Expand Down

0 comments on commit afdee60

Please sign in to comment.