Notification Report page rewrite v0.1📩

This commit is contained in:
Jokob-sk
2023-10-25 22:35:07 +11:00
parent 0ed24dac0a
commit fd162ff98a
13 changed files with 245 additions and 115 deletions

View File

@@ -169,6 +169,14 @@ function processColumnValue(dbColumnDef, value, index, type) {
}
}
break;
case 'eval':
for (const option of dbColumnDef.options) {
if (option.type === type) {
value = eval(value);
}
}
break;
default:
value = value + `<div style='text-align:center' title="${getString("Plugins_no_control")}"><i class='fa-solid fa-circle-question'></i></div>` ;