Use a better style for the part table.

This commit is contained in:
Jan Böhmer 2019-03-27 19:03:02 +01:00
parent 3cb04c2580
commit 3c16ed6be7
4 changed files with 39 additions and 5 deletions

View file

@ -392,7 +392,13 @@ class AjaxUI {
});
//Register links.
promise.then(ajaxUI.registerLinks);
promise.then(function() {
ajaxUI.registerLinks();
//Set the correct title in the table.
let title = $('#part-card-header-src');
$('#part-card-header').html(title.html());
});
});
console.debug('Datatables inited.');