mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
Bugfix
This commit is contained in:
parent
0c21a2956c
commit
1e74502866
@ -198,6 +198,14 @@ $visualConsoleItems = VisualConsole::getItemsFromDB(
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Add the datetime when the item was received.
|
||||
var receivedAt = new Date();
|
||||
items.map(function(item) {
|
||||
item["receivedAt"] = receivedAt;
|
||||
return item;
|
||||
});
|
||||
|
||||
var visualConsoleManager = createVisualConsole(
|
||||
container,
|
||||
props,
|
||||
|
Loading…
x
Reference in New Issue
Block a user