Don't display checkbox value in preset summary.

This commit is contained in:
Quentin Decaunes 2019-03-23 18:02:27 +01:00
parent bfd488b068
commit 9da9fd5da2

View File

@ -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);
}