From 8dbc307a3956f0f54c4f4539c5881be45ff4f9ab Mon Sep 17 00:00:00 2001 From: koalyptus Date: Sun, 11 Feb 2018 17:04:30 +1100 Subject: [PATCH] PR feedback (0) --- src/modules/checkList.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/checkList.js b/src/modules/checkList.js index 4887d614..a41851d0 100644 --- a/src/modules/checkList.js +++ b/src/modules/checkList.js @@ -405,12 +405,12 @@ export class CheckList extends BaseDropdown { n.setAttribute('indexes', ''); } else { - let index = slcIndexes + chkIndex + tf.separator; + let indexes = slcIndexes + chkIndex + tf.separator; let values = trim(slcValues + ' ' + chkValue + ' ' + tf.orOperator); n.setAttribute('value', values); - n.setAttribute('indexes', index); + n.setAttribute('indexes', indexes); //uncheck first option let chx0 = tag(items[0], 'input')[0];