Visual touchup of custom expressions

This commit is contained in:
Cohee
2023-09-14 21:41:30 +03:00
parent 7553efc308
commit b24509ef43
2 changed files with 8 additions and 4 deletions

View File

@ -940,6 +940,10 @@ function renderCustomExpressions() {
option.text = expression;
$('#expression_custom').append(option);
}
if (customExpressions.length === 0) {
$('#expression_custom').append('<option value="" disabled selected>[ No custom expressions ]</option>');
}
}
async function getExpressionsList() {