Skip to content

Commit

Permalink
adding tooltip to tiled image import
Browse files Browse the repository at this point in the history
  • Loading branch information
BryonLewis committed Sep 14, 2023
1 parent 033133a commit 3b86073
Showing 1 changed file with 25 additions and 12 deletions.
37 changes: 25 additions & 12 deletions client/platform/web-girder/views/Upload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -566,18 +566,31 @@ export default defineComponent({
@multi-cam="openMultiCamDialog"
/>
</v-list-item>
<v-list-item>
<import-button
:name="`Add ${pendingUploads.length ? 'Another ' : ''}Tiled Images`"
icon="mdi-folder-open"
open-type="large-image"
class="grow my-2"
:small="!!pendingUploads.length"
:button-attrs="buttonAttrs"
@open="openImport($event)"
@multi-cam="openMultiCamDialog"
/>
</v-list-item>
<v-tooltip
open-delay="50"
top
max-width="400"
>
<template #activator="{ on }">
<v-list-item v-on="on">
<import-button
:name="`Add ${pendingUploads.length ? 'Another ' : ''}Tiled Images`"
icon="mdi-folder-open"
open-type="large-image"
class="grow my-2"
:small="!!pendingUploads.length"
:button-attrs="buttonAttrs"
@open="openImport($event)"
@multi-cam="openMultiCamDialog"
/>
</v-list-item>
</template>
<b>
Allows for a single or sequence of geospatial
large images for use in a tile server
with formats such as: .tiff, .nitf, .ntf, .tif
</b>
</v-tooltip>
<v-list-item>
<import-button
:name="`Add ${pendingUploads.length ? 'Another ' : ''}Zip File`"
Expand Down

0 comments on commit 3b86073

Please sign in to comment.