Skip to content

Commit

Permalink
Fix "Cannot read properties of undefined (reading 'isMobile')" error (#…
Browse files Browse the repository at this point in the history
…132)

Co-authored-by: Rafael Milewski <[email protected]>
  • Loading branch information
aaronaccessvr and milewski authored Jul 24, 2024
1 parent cd6a02d commit 85c031d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/js/tool.js

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions dist/js/tool.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
/*!
* The buffer module from node.js, for the browser.
*
* @author Feross Aboukhadijeh <http://feross.org>
* @license MIT
*/

/*!
* vuex v4.1.0
* (c) 2022 Evan You
* @license MIT
*/

/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */

/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
2 changes: 1 addition & 1 deletion resources/js/components/Menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@
watch: {
'$store.getters.mainMenuShown': {
immediate: true,
handler: isMainMenuShown => {
handler(isMainMenuShown) {
if (!this.isMobile) {
return
Expand Down

0 comments on commit 85c031d

Please sign in to comment.