Merge pull request #4908 from sboursen-scinote/sb_SCI-7674

Inventories: archived by and archived on seen on active item list [SCI-7674]
This commit is contained in:
artoscinote 2023-02-07 10:23:28 +01:00 committed by GitHub
commit b9be286802
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -152,12 +152,12 @@
viewSwitch.on('click', '.view-switch-archived', function() {
$('.repository-show').removeClass('active').addClass('archived');
$('#manage-repository-column').removeClass('active').addClass('archived');
RepositoryDatatable.reload();
initTable();
});
viewSwitch.on('click', '.view-switch-active', function() {
$('.repository-show').removeClass('archived').addClass('active');
$('#manage-repository-column').removeClass('archived').addClass('active');
RepositoryDatatable.reload();
initTable();
});
}