You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've noticed that when calling the meta refresh on the client side, it doesn't respect innerhtml=null in the child component.
After further investigation I found that the problem lays in the following line:
It happens since you are removing it from the source and then in the next refresh it doesn't exists anymore.
My solution for now was to override the splice method so it won't do anything.
The text was updated successfully, but these errors were encountered:
I'm using nuxt 2
I've noticed that when calling the meta refresh on the client side, it doesn't respect innerhtml=null in the child component.
After further investigation I found that the problem lays in the following line:
vue-meta/src/shared/merge.js
Line 51 in 5a70744
It happens since you are removing it from the source and then in the next refresh it doesn't exists anymore.
My solution for now was to override the splice method so it won't do anything.
The text was updated successfully, but these errors were encountered: