Add zone and name

merge-requests/48/head
Paul Traina 2021-01-04 13:00:36 -08:00
rodzic ba5340d013
commit 63fd046b51
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -8669,7 +8669,7 @@ function displayItemList(table, color)
.forEach(function (key, i)
{
var style;
var name = typeof table[key].name !== 'undefined' ? table[key].name : key;
var name = typeof table[key].name !== 'undefined' ? key + " / " + table[key].name : key;
if (table[key].confirmed == true)
{
style = "color:" + color + ";" + confirmed;