-
-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug Report] Maximum call stack size exceeded #5633
Comments
Hey @KaelWD In which version can I expect this fix? |
Unless we somehow fix it accidentally in vuetify, that's a question for Evan You. He's merged a bunch of PRs recently so probably soon. |
@KaelWD Thanks for quick response. Much appreciated! |
Hey @KaelWD Still the new doc for 1.3.4 has the same issue. I am exited to see this updates. Regards, |
Hey, function mergeData (to, from) {
if (!from) return to
let key, toVal, fromVal
const keys = Object.keys(from)
for (let i = 0; i < keys.length; i++) {
key = keys[i]
toVal = to[key]
fromVal = from[key]
if (!hasOwn(to, key)) {
set(to, key, fromVal)
} else if (
toVal !== fromVal &&
isPlainObject(toVal) &&
isPlainObject(fromVal)
) {
mergeData(toVal, fromVal)
}
}
return to
} and it's work for now. Hope an official update appear quickly 👍 Regards, |
Hi @QuanticPotatoes, It seems to come from v-tabs item. See the following screenshot: Hope for an update too 😄 |
Hi, In my component, I used the sample code from the example on the official doc
Got this error each time I refresh the windows, or with HMR when I edit store files but not when I edit .vue file (page or component)
If I remove |
🤦♂️ |
@supertino7 |
No, only in |
Hey @KaelWD Eagerly awaiting the fix for this issue. Regards, |
Should be already fixed in vue 2.5.18-beta.0 |
Hey @jacekkarczmarczyk , Could you please share vuetify 2.5.18-beta.0 document repo and production repo link? Regards, |
Versions and Environment
Vuetify: 1.3.0
Vue: 2.5.17
Browsers: Chrome 69.0.3497.100
OS: Mac OS 10.13.6
Steps to reproduce
Now everything is stucked. We need to refresh the page.
https://www.dropbox.com/s/7gmowlc6lcb780i/Screenshot%202018-10-18%2016.15.09.png?dl=0
Expected Behavior
Fix the solution
Actual Behavior
I was working with 1.2.2
Reproduction Link
You need to follow the steps, it could not display by any reproduction link.
Other comments
Request for fix
The text was updated successfully, but these errors were encountered: