From 94e12a2ee8ba632561d33f1d909ce9c98dbb0ccd Mon Sep 17 00:00:00 2001 From: Cadence Ember Date: Wed, 28 Apr 2021 00:48:38 +1200 Subject: [PATCH] Fix escaped HTML description on settings page --- pug/settings.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pug/settings.pug b/pug/settings.pug index e873031..3519b6a 100644 --- a/pug/settings.pug +++ b/pug/settings.pug @@ -16,7 +16,7 @@ mixin input({id, label, description, type, placeholder, disabled, list}) each item in list option(value=item) if description - .field-row__description= description + .field-row__description!= description mixin select({id, label, description, disabled, options}) - disabled = disabled || false