Skip to content

Commit 9a69a6a

Browse files
committed
#29411: Fixed static tests
1 parent 36074a9 commit 9a69a6a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/MediaGalleryUi/view/adminhtml/web/js/directory/directoryTree.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ define([
201201
/**
202202
* Remove ability to multiple select on nodes
203203
*/
204-
disableMultiselectBehavior : function () {
204+
disableMultiselectBehavior: function () {
205205
$.jstree.defaults.ui['select_range_modifier'] = false;
206206
$.jstree.defaults.ui['select_multiple_modifier'] = false;
207207
},
@@ -287,7 +287,7 @@ define([
287287
* @returns {String|null}
288288
*/
289289
getRequestedDirectory: function () {
290-
return (!_.isUndefined(window.MediabrowserUtility) && window.MediabrowserUtility.pathId !== '')
290+
return !_.isUndefined(window.MediabrowserUtility) && window.MediabrowserUtility.pathId !== ''
291291
? Base64.idDecode(window.MediabrowserUtility.pathId)
292292
: null;
293293
},

0 commit comments

Comments
 (0)