Skip to content

Commit

Permalink
resolve comments
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Beichler <felix@beichlers.de>
  • Loading branch information
Himmelxd committed May 13, 2024
1 parent 12a0e05 commit 811b3d1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/components/SidebarTabs/SharingSidebarTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@
</template>
{{ t('forms', 'Copy to clipboard') }}
</NcActionLink>
<NcActionButton @click.prevent="openQrModal(getPublicShareLink(share))">
<NcActionButton @click="openQrModal(getPublicShareLink(share))">
<template #icon>
<IconQr :size="20" />
</template>
{{ t('forms', 'Show QR-Code') }}
{{ t('forms', 'Show QR code') }}
</NcActionButton>
<NcActionButton v-if="isEmbeddable" @click="copyEmbeddingCode(share)">
<template #icon>
Expand Down Expand Up @@ -101,7 +101,7 @@
<div class="modal__content">
<h2>{{ form.title }}</h2>
<div>
<img :src="qrModal.uri" :alt="qrModal.text">
<img :src="qrModal.uri" :title="qrModal.text" :alt=" t('forms', 'QR code representation of') + ' ' + form.title ">
</div>
</div>
</NcModal>
Expand Down Expand Up @@ -256,7 +256,7 @@ export default {
on: false,
text: '',
uri: '',
}
},
}
},
Expand Down Expand Up @@ -488,7 +488,6 @@ export default {
margin-inline-end: 4px;
color: var(--color-error)
}
}
.modal__content {
Expand Down

0 comments on commit 811b3d1

Please sign in to comment.