mirror of
https://gitlab.com/ryzen-controller-team/ryzen-controller.git
synced 2024-12-22 10:03:28 +07:00
Don't display checkbox value in preset summary.
This commit is contained in:
parent
bfd488b068
commit
9da9fd5da2
@ -450,7 +450,7 @@ function updatePresetList() {
|
||||
|
||||
let valueSummary = [];
|
||||
for (const key in preset) {
|
||||
if (preset.hasOwnProperty(key) && key.indexOf('_range') !== -1) {
|
||||
if (preset.hasOwnProperty(key) && key.indexOf('_range') !== -1 && key.indexOf('apply_') != 0) {
|
||||
const value = preset[key];
|
||||
valueSummary.push(value);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user