Skip to content

Commit 5718f9b

Browse files
committed
MAGETWO-33395: Fix codestyle and annotations
1 parent a1c9f59 commit 5718f9b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/code/Magento/PageCache/view/adminhtml/templates/page_cache_validation.phtml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ require(['jquery'], function($){
2424
var invalidFields = fields.filter(function () {
2525
return ($(this).val().length == 0 || ($(this).val() != $(this).data('previous-value')));
2626
});
27-
$('[id^=system_full_page_cache_varnish_export_button_version]').prop('disabled', (invalidFields.length > 0));
27+
$('[id^=system_full_page_cache_varnish_export_button_version]').prop(
28+
'disabled',
29+
(invalidFields.length > 0)
30+
);
2831
});
2932
//]]>
3033

0 commit comments

Comments
 (0)