Skip to content

Commit aa7195a

Browse files
committed
Fix static tests
1 parent c23393d commit aa7195a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

app/code/Magento/Ui/view/base/web/js/grid/columns/image-preview.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,11 @@ define([
100100
*/
101101
show: function (record) {
102102
var img;
103-
104-
if (record._rowIndex === this.visibleRecord()
105-
&& this.isVisible(record)) {
103+
104+
if (record._rowIndex === this.visibleRecord() &&
105+
this.isVisible(record)) {
106106
this.hide();
107+
107108
return;
108109
}
109110

0 commit comments

Comments
 (0)