Skip to content

Commit

Permalink
fix: use v-dialog scrollable props
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Feb 28, 2024
1 parent b19afb2 commit e83a9cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/PriceProof.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<v-icon icon="mdi-image"></v-icon>
</v-chip>

<v-dialog v-model="dialog" max-height="80%" width="80%">
<v-dialog scrollable v-model="dialog" max-height="80%" width="80%">
<v-card>
<v-card-title>
{{ $t('PriceCard.Proof') }} <v-btn style="float:right;" variant="text" density="compact" icon="mdi-close" @click="closeDialog"></v-btn>
</v-card-title>
<v-divider></v-divider>
<v-card-text style="overflow-y:scroll;">
<v-card-text>
<v-img :src="proofUrl"></v-img>
</v-card-text>
<v-divider></v-divider>
Expand Down
4 changes: 2 additions & 2 deletions src/components/UserRecentProofsDialog.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<v-dialog max-height="80%" width="80%">
<v-dialog scrollable max-height="80%" width="80%">
<v-card>
<v-card-title>
{{ $t('UserRecentProofsDialog.SelectRecentProof') }} <v-btn style="float:right;" variant="text" density="compact" icon="mdi-close" @click="close"></v-btn>
</v-card-title>
<v-divider></v-divider>
<v-card-text style="overflow-y:scroll;">
<v-card-text>
<v-row>
<v-col cols="12" sm="6" md="3" v-for="proof in userProofList" :key="proof">
<ProofCard :proof="proof" :hideProofDelete="true" :isSelectable="true" :readonly="true" @proofSelected="selectProof"></ProofCard>
Expand Down

0 comments on commit e83a9cd

Please sign in to comment.