1
0
複製 0
镜像来自 https://git.sr.ht/~cadence/cloudtube 已同步 2025-12-13 15:46: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
父節點 8292c8db57
當前提交 94e12a2ee8
沒有發現已知的金鑰在資料庫的簽署中
GPG key ID: BC1C2C61CF521B17

查看文件

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