1
0
mirror of https://git.sr.ht/~cadence/cloudtube synced 2024-09-19 18:57:30 +00:00

Fix escaped HTML description on settings page

This commit is contained in:
Cadence Ember 2021-04-28 00:48:38 +12:00
parent 8292c8db57
commit 94e12a2ee8
No known key found for this signature in database
GPG Key ID: BC1C2C61CF521B17

View File

@ -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