Skip to content

Commit e533396

Browse files
committed
Fixed static tests
1 parent a68bbbd commit e533396

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,8 @@ define([
286286
* @returns {String|null}
287287
*/
288288
getRequestedDirectory: function () {
289-
return !_.isUndefined(window.MediabrowserUtility) && window.MediabrowserUtility.pathId !== ''
290-
? Base64.idDecode(window.MediabrowserUtility.pathId)
291-
: null;
289+
return !_.isUndefined(window.MediabrowserUtility) && window.MediabrowserUtility.pathId !== '' ?
290+
Base64.idDecode(window.MediabrowserUtility.pathId) : null;
292291
},
293292

294293
/**

0 commit comments

Comments
 (0)