Fix eslint error

merge-requests/48/head
Paul Traina 2021-01-04 13:40:18 -08:00
rodzic 63fd046b51
commit 3565a3f73b
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' ? key + " / " + 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;