data.prints.last.lastPrintTime => data.prints.last.printTime
This commit is contained in:
parent
ecde4b81d0
commit
1c3de9019b
1 changed files with 1 additions and 1 deletions
|
|
@ -614,7 +614,7 @@ $(function() {
|
|||
}
|
||||
if (data["prints"] && data["prints"]["last"]) {
|
||||
output += gettext("Last printed") + ": " + formatTimeAgo(data["prints"]["last"]["date"]) + "<br>";
|
||||
if (data["prints"]["last"]["lastPrintTime"]) {
|
||||
if (data["prints"]["last"]["printTime"]) {
|
||||
output += gettext("Last Print Time") + ": " + formatDuration(data["prints"]["last"]["printTime"]);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue