Merge pull request #7146 from sboursen-scinote/sb_SCI-10275

Missing archive button on inventory table active state [SCI-10275]
This commit is contained in:
aignatov-bio 2024-02-28 18:49:12 +01:00 committed by GitHub
commit c8734e01dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -68,7 +68,7 @@ import ShareRepositoryModal from './modals/share.vue';
import DataTable from '../shared/datatable/table.vue'; import DataTable from '../shared/datatable/table.vue';
export default { export default {
name: 'LabelTemplatesTable', name: 'RepositoriesTable',
components: { components: {
DataTable, DataTable,
ConfirmationModal, ConfirmationModal,

View file

@ -269,6 +269,9 @@ export default {
reloadingTable() { reloadingTable() {
if (this.reloadingTable) { if (this.reloadingTable) {
this.updateTable(); this.updateTable();
this.$nextTick(() => {
this.selectedRows = [];
});
} }
}, },
currentViewRender() { currentViewRender() {