Skip to content

Commit

Permalink
Use import type syntax in OverviewTab.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
mvandenburgh committed Jan 30, 2023
1 parent 9e02928 commit ae2d456
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions web/src/components/DLP/OverviewTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -224,18 +224,13 @@
</template>

<script setup lang="ts">
import { AssociatedProjects, DandisetMetadata, RelatedResource } from '@/types';
import {
computed,
ComputedRef,
getCurrentInstance,
onMounted,
PropType,
} from 'vue';
import { computed, getCurrentInstance, onMounted } from 'vue';
import MetadataCard from '@/components/DLP/MetadataCard.vue';
import { useDandisetStore } from '@/stores/dandiset';
import type { ComputedRef, PropType } from 'vue';
import type { AssociatedProjects, DandisetMetadata, RelatedResource } from '@/types';
// Asset summary fields to hide
const ASSET_SUMMARY_BLACKLIST = new Set([
'numberOfBytes',
Expand Down

0 comments on commit ae2d456

Please sign in to comment.