Show lock icon in Default preset

This commit is contained in:
redphx 2024-12-09 19:36:52 +07:00
parent f0e4d4b8d0
commit 3230b99a05
2 changed files with 4 additions and 1 deletions

View File

@ -62,6 +62,7 @@ div.bx-select {
overflow: hidden; overflow: hidden;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
min-height: 15px;
span { span {
display: block; display: block;
@ -70,6 +71,8 @@ div.bx-select {
text-align: left; text-align: left;
line-height: initial; line-height: initial;
white-space: pre; white-space: pre;
min-height: 15px;
align-content: center;
} }
} }
} }

View File

@ -275,7 +275,7 @@ export function renderPresetsList<T extends PresetRecord>($select: HTMLSelectEle
// Render options // Render options
const groups = { const groups = {
default: t('default'), default: t('default') + ' 🔒',
custom: t('custom'), custom: t('custom'),
}; };