Merge pull request #2068 from mlorb/ml-sci-3816

Fix reloading of datatables header [SCI-3816]
This commit is contained in:
mlorb 2019-09-27 10:29:32 +02:00 committed by GitHub
commit 2fd9345616
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1361,8 +1361,8 @@ var RepositoryDatatable = (function(global) {
function redrawTableOnSidebarToggle() { function redrawTableOnSidebarToggle() {
$('#sidebar-arrow').on('click', function() { $('#sidebar-arrow').on('click', function() {
setTimeout(function() { setTimeout(function() {
TABLE.draw(); adjustTableHeader();
}, 250); }, 400);
}); });
} }