Skip to content

Commit

Permalink
fixup! *: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tharvik committed Jun 19, 2024
1 parent db78ac6 commit c4d12ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions webapp/src/components/containers/IconCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@

<script setup lang="ts">
import { withDefaults } from 'vue'
interface Props {
withContent?: boolean
titlePlacement?: 'left' | 'center' | 'right'
Expand Down
4 changes: 2 additions & 2 deletions webapp/src/components/data/dataset_input/FileSelection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@

<!-- If no preview of the selected file, display the nbr. of uploaded files -->
<div class="pt-8 flex flex-col items-center pb-2">
<div
<div
v-if="selectedFiles?.length"
class="mb-4 flex justify-center items-center text-center md:text-left sm:text-lg text-disco-blue">
<span v-if="isMultiple">Number of selected files: <span class="pl-1 text-xl">{{ selectedFiles?.length ?? 0 }}</span></span>
Expand All @@ -107,7 +107,7 @@
</template>

<script lang="ts" setup>
import { ref, withDefaults } from 'vue'
import { ref } from 'vue'

import CustomButton from '@/components/simple/CustomButton.vue'

Expand Down

0 comments on commit c4d12ed

Please sign in to comment.