Fix notification icon and add details for Local DNS/CNAME records

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König
2023-11-05 21:48:18 +01:00
parent 1586a94021
commit 6f6f0f98fd
2 changed files with 13 additions and 7 deletions

View File

@@ -88,6 +88,7 @@ function showAlert(type, icon, title, message) {
const options = {
title: "&nbsp;<strong>" + title + "</strong><br>",
message: message,
icon: icon,
},
settings = {
type: type,
@@ -100,7 +101,7 @@ function showAlert(type, icon, title, message) {
};
switch (type) {
case "info":
options.icon = icon !== null && icon.len > 0 ? icon : "far fa-clock";
options.icon = icon !== null && icon.len > 0 ? icon : "fas fa-clock";
break;
case "success":