diff options
author | catch <catch@35733.no-reply.drupal.org> | 2021-05-17 21:30:23 +0100 |
---|---|---|
committer | catch <catch@35733.no-reply.drupal.org> | 2021-05-17 21:30:23 +0100 |
commit | 8db131bd38cfea6d709f1d90b8e387bfb27e8bb5 (patch) | |
tree | fc83863088249f1779e4917e7831816cffd31332 /core/modules/views/js/base.es6.js | |
parent | 1c94be4a7b3bccca87f4580486df3ee9da0b3344 (diff) | |
download | drupal-8db131bd38cfea6d709f1d90b8e387bfb27e8bb5.tar.gz drupal-8db131bd38cfea6d709f1d90b8e387bfb27e8bb5.zip |
Issue #3214412 by bnjmnm, tedbow: Build + prettier not run after yarn dependency update 3210633
Diffstat (limited to 'core/modules/views/js/base.es6.js')
-rw-r--r-- | core/modules/views/js/base.es6.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/modules/views/js/base.es6.js b/core/modules/views/js/base.es6.js index 7de476e19837..5838e64b3fe0 100644 --- a/core/modules/views/js/base.es6.js +++ b/core/modules/views/js/base.es6.js @@ -30,9 +30,8 @@ pair = pairs[i].split('='); // Ignore the 'q' path argument, if present. if (pair[0] !== 'q' && pair[1]) { - args[ - decodeURIComponent(pair[0].replace(/\+/g, ' ')) - ] = decodeURIComponent(pair[1].replace(/\+/g, ' ')); + args[decodeURIComponent(pair[0].replace(/\+/g, ' '))] = + decodeURIComponent(pair[1].replace(/\+/g, ' ')); } } return args; |