Skip to content

Commit f12a108

Browse files
authored
Merge pull request #6280 from LibreSign/fix/shorten-file-picker-label
fix: shorten file picker label
2 parents b2ec4ba + 0bf5b73 commit f12a108

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Components/Request/RequestPicker.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,12 @@
2020
{{ t('libresign', 'Upload from URL') }}
2121
</NcActionButton>
2222
<NcActionButton :wide="true"
23+
:title="envelopeEnabled ? t('libresign', 'Multiple files allowed') : null"
2324
@click="showFilePicker = true">
2425
<template #icon>
2526
<FolderIcon :size="20" />
2627
</template>
27-
{{ envelopeEnabled ? t('libresign', 'Choose from Files (multiple)') : t('libresign', 'Choose from Files') }}
28+
{{ t('libresign', 'Choose from Files') }}
2829
</NcActionButton>
2930
<NcActionButton :wide="true"
3031
@click="uploadFile">

0 commit comments

Comments
 (0)