File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
app/code/Magento/CatalogSearch/Block/Advanced Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -197,16 +197,16 @@ public function getCurrency($attribute)
197
197
public function getAttributeInputType ($ attribute )
198
198
{
199
199
$ dataType = $ attribute ->getBackend ()->getType ();
200
- $ imputType = $ attribute ->getFrontend ()->getInputType ();
201
- if ($ imputType == 'select ' || $ imputType == 'multiselect ' ) {
200
+ $ inputType = $ attribute ->getFrontend ()->getInputType ();
201
+ if ($ inputType == 'select ' || $ inputType == 'multiselect ' ) {
202
202
return 'select ' ;
203
203
}
204
204
205
- if ($ imputType == 'boolean ' ) {
205
+ if ($ inputType == 'boolean ' ) {
206
206
return 'yesno ' ;
207
207
}
208
208
209
- if ($ imputType == 'price ' ) {
209
+ if ($ inputType == 'price ' ) {
210
210
return 'price ' ;
211
211
}
212
212
You can’t perform that action at this time.
0 commit comments