Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions client/platform/desktop/frontend/components/Export.vue
Original file line number Diff line number Diff line change
Expand Up @@ -351,17 +351,17 @@ export default defineComponent({
depressed
block
class="my-1"
@click="doExport({ type: 'trackJSON' })"
@click="doExport({ type: 'coco' })"
>
<span>TRACK JSON</span>
<span>COCO JSON</span>
</v-btn>
<v-btn
depressed
block
class="my-1"
@click="doExport({ type: 'coco' })"
@click="doExport({ type: 'trackJSON' })"
>
<span>COCO JSON</span>
<span>DIVE JSON</span>
</v-btn>
</v-col>
</v-row>
Expand Down
10 changes: 5 additions & 5 deletions client/platform/web-girder/views/Export.vue
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,12 @@ export default defineComponent({
:disabled="!exportUrls.exportDetectionsUrl"
@click="doExport({
url: exportUrls
&& exportUrls.exportDetectionsUrlTrackJSON,
&& exportUrls.exportDetectionsUrlCocoJSON,
})"
>
<span
v-if="exportUrls.exportDetectionsUrl"
>DIVE TrackJSON</span>
>COCO JSON</span>
<span
v-else
>detections unavailable</span>
Expand All @@ -480,12 +480,12 @@ export default defineComponent({
:disabled="!exportUrls.exportDetectionsUrl"
@click="doExport({
url: exportUrls
&& exportUrls.exportDetectionsUrlCocoJSON,
&& exportUrls.exportDetectionsUrlTrackJSON,
})"
>
<span
v-if="exportUrls.exportDetectionsUrl"
>COCO JSON</span>
>DIVE JSON</span>
<span
v-else
>detections unavailable</span>
Expand Down Expand Up @@ -591,7 +591,7 @@ export default defineComponent({
</v-btn>
</v-card-actions>
<v-card-text class="pb-0">
Export All selected Dataset Detections in VIAME CSV and TrackJSON
Export All selected Dataset Detections in VIAME CSV and DIVE JSON
</v-card-text>
<v-checkbox
v-model="excludeBelowThreshold"
Expand Down