settings-advanced: drop small element

Use `.small` on the wrapper element

Signed-off-by: XhmikosR <xhmikosr@gmail.com>
This commit is contained in:
XhmikosR
2025-05-19 08:33:09 +03:00
committed by GitHub
parent ddf21bb459
commit 89bcc8ca86

View File

@@ -21,7 +21,7 @@ function addAllowedValues(allowed) {
}
if (typeof allowed === "string") {
return "<p><small>Allowed value: " + utils.escapeHtml(allowed) + "</small></p>";
return `<p class="small">Allowed value: ${utils.escapeHtml(allowed)}</p>`;
}
}