File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
app/code/Magento/Ui/view/base/web/js/lib/ko/bind Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -265,7 +265,8 @@ define([
265
265
var value = applyToObject ( option , optionsValue , option ) ,
266
266
label = applyToObject ( option , optionsText , value ) || '' ,
267
267
title = applyToObject ( option , optionsText , value ) || '' ,
268
- obj = { } ;
268
+ obj = { } ,
269
+ space = '\u2007\u2007\u2007' ;
269
270
270
271
obj [ optionTitle ] = applyToObject ( option , optionsText + 'title' , value ) ;
271
272
@@ -276,7 +277,7 @@ define([
276
277
res . push ( obj ) ;
277
278
res = res . concat ( formatOptions ( value ) ) ;
278
279
} else {
279
- obj [ optionsText ] = strPad ( ' ' , nestedOptionsLevel * 2 ) + label ;
280
+ obj [ optionsText ] = strPad ( space , nestedOptionsLevel * 2 ) + label ;
280
281
obj [ optionsValue ] = value ;
281
282
res . push ( obj ) ;
282
283
}
You can’t perform that action at this time.
0 commit comments