Skip to content

Commit

Permalink
fix(QTabs): Guard $refs.content at recalculateScroll #5443 #5507
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Nov 9, 2019
1 parent feffa88 commit 1c42dce
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions docs/yarn.lock
Expand Up @@ -3141,9 +3141,9 @@ ejs@^2.3.1, ejs@^2.6.1:
integrity sha512-kS/gEPzZs3Y1rRsbGX4UOSjtP/CeJP0CxSNZHYxGfVM/VgLcv0ZqM7C45YyTj2DI2g7+P9Dd24C+IMIg6D0nYQ==

electron-to-chromium@^1.3.295:
version "1.3.305"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.305.tgz#64f38c2986277b15c7b2c81954171ed22bee249b"
integrity sha512-jBEhRZ3eeJWf3eAnGYB1vDy09uBQpZWshC5fxiiIRofA9L3vkpa3SxsXleVS2MvuYir15oTVxzWPsOwj7KBzUw==
version "1.3.306"
resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.306.tgz#e8265301d053d5f74e36cb876486830261fbe946"
integrity sha512-frDqXvrIROoYvikSKTIKbHbzO6M3/qC6kCIt/1FOa9kALe++c4VAJnwjSFvf1tYLEUsP2n9XZ4XSCyqc3l7A/A==

elementtree@0.1.7:
version "0.1.7"
Expand Down Expand Up @@ -5411,9 +5411,9 @@ log-update@3.3.0:
wrap-ansi "^5.0.0"

loglevel@^1.6.4:
version "1.6.4"
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.4.tgz#f408f4f006db8354d0577dcf6d33485b3cb90d56"
integrity sha512-p0b6mOGKcGa+7nnmKbpzR6qloPbrgLcnio++E+14Vo/XffOGwZtRpUhr8dTH/x2oCMmEoIU0Zwm3ZauhvYD17g==
version "1.6.6"
resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.6.tgz#0ee6300cc058db6b3551fa1c4bf73b83bb771312"
integrity sha512-Sgr5lbboAUBo3eXCSPL4/KoVz3ROKquOjcctxmHIt+vol2DrqTQe3SwkKKuYhEiWB5kYa13YyopJ69deJ1irzQ==

longest@^1.0.1:
version "1.0.1"
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/tabs/QTabs.js
Expand Up @@ -207,7 +207,7 @@ export default Vue.extend({
},

__recalculateScroll () {
this.$el !== void 0 && this.__updateContainer({
this._isDestroyed !== true && this.__updateContainer({
width: this.$el.offsetWidth,
height: this.$el.offsetHeight
})
Expand Down

0 comments on commit 1c42dce

Please sign in to comment.