Skip to content

Commit d659065

Browse files
author
Stanislav Idolov
committed
Fixed static failures
1 parent 1a20085 commit d659065

File tree

3 files changed

+19
-2
lines changed
  • app
    • code/Magento/Ui/view/base/web/js/grid/controls/button
    • design/frontend/Magento

3 files changed

+19
-2
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/**
2+
* Copyright © Magento, Inc. All rights reserved.
3+
* See COPYING.txt for license details.
4+
*/
5+
6+
define([
7+
'jquery'
8+
], function ($) {
9+
'use strict';
10+
11+
return function (data, element) {
12+
13+
$(element).on('click.splitDefault', '.action-default', function () {
14+
$(this).siblings('.dropdown-menu').find('.item-default').trigger('click');
15+
});
16+
};
17+
});

app/design/frontend/Magento/blank/Magento_Catalog/web/css/source/module/_toolbar.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@
190190

191191
.toolbar {
192192
.products.wrapper ~ & .limiter {
193-
float: right;
194193
display: block;
194+
float: right;
195195
}
196196
}
197197
}

app/design/frontend/Magento/luma/Magento_Catalog/web/css/source/module/_toolbar.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@
237237

238238
.toolbar {
239239
.products.wrapper ~ & .limiter {
240-
float: right;
241240
display: block;
241+
float: right;
242242
}
243243
}
244244
}

0 commit comments

Comments
 (0)