diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-10-13 11:30:34 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-10-17 11:19:02 +0200 |
commit | 694fd51cbaa18acbaa76a100010f00b904f96f7b (patch) | |
tree | 85c411af182c505bd145746b32cd405d86e843ab /apps/files/src/components/FileEntry/FileEntryCheckbox.vue | |
parent | 64c32f714894d2c884c82922a5349bbe64a55be8 (diff) | |
download | nextcloud-server-694fd51cbaa18acbaa76a100010f00b904f96f7b.tar.gz nextcloud-server-694fd51cbaa18acbaa76a100010f00b904f96f7b.zip |
fix(files): split FileEntry Name
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/src/components/FileEntry/FileEntryCheckbox.vue')
-rw-r--r-- | apps/files/src/components/FileEntry/FileEntryCheckbox.vue | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/files/src/components/FileEntry/FileEntryCheckbox.vue b/apps/files/src/components/FileEntry/FileEntryCheckbox.vue index 376d14d4073..961e4bf2266 100644 --- a/apps/files/src/components/FileEntry/FileEntryCheckbox.vue +++ b/apps/files/src/components/FileEntry/FileEntryCheckbox.vue @@ -21,8 +21,9 @@ --> <template> <td class="files-list__row-checkbox"> - <NcLoadingIcon v-if="loading" /> - <NcCheckboxRadioSwitch :aria-label="t('files', 'Select the row for {displayName}', { displayName })" + <NcLoadingIcon v-if="isLoading" /> + <NcCheckboxRadioSwitch v-else + :aria-label="t('files', 'Select the row for {displayName}', { displayName })" :checked="isSelected" @update:checked="onSelectionChange" /> </td> @@ -57,7 +58,7 @@ export default Vue.extend({ type: String, required: true, }, - loading: { + isLoading: { type: Boolean, default: false, }, |