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;
white-space: nowrap;
text-overflow: ellipsis;
min-height: 15px;
span {
display: block;
@ -70,6 +71,8 @@ div.bx-select {
text-align: left;
line-height: initial;
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
const groups = {
default: t('default'),
default: t('default') + ' 🔒',
custom: t('custom'),
};