fix(files): Display selected files count

Signed-off-by: Christopher Ng <chrng8@gmail.com>
(cherry picked from commit a999544ff2)
backport/44805/stable28
Christopher Ng 2 months ago committed by Ferdinand Thiessen
parent b12b6ba6c3
commit 41f35fc1dc

@ -34,6 +34,7 @@
:scroll-to-index="scrollToIndex"
:caption="caption">
<template v-if="!isNoneSelected" #header-overlay>
<span class="files-list__selected">{{ t('files', '{count} selected', { count: selectedNodes.length }) }}</span>
<FilesListTableHeaderActions :current-view="currentView"
:selected-nodes="selectedNodes" />
</template>
@ -357,6 +358,11 @@ export default defineComponent({
flex-direction: column;
}
.files-list__selected {
padding-right: 12px;
white-space: nowrap;
}
.files-list__table {
display: block;

Loading…
Cancel
Save