2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-12 07:54:14 +00:00

Add option for display of "time" in addition to date

This commit is contained in:
Oliver
2022-02-28 19:14:20 +11:00
parent b00ae67d68
commit fd02f1b761
2 changed files with 6 additions and 2 deletions

View File

@ -2658,7 +2658,7 @@ function loadStockTrackingTable(table, options) {
title: '{% trans "Date" %}',
sortable: true,
formatter: function(value) {
return renderDate(value);
return renderDate(value, {showTime: true});
}
});