Closed distantnative closed 1 year ago
Hi there,
Just wanted to give a heads up on a small change that this plugin will need to support Kirby 4 (currently in development):
user
user.id === null
if (window.panel.user.id === null) return;
For v4 we will likely keep the Vuex store around (even though not using it ourselves anymore), but it could be that for v5 (in summer 2024) we would drop it from the core. Then we would need to think about a better alternative for you.
Thanks for the heads up, I added a fix in the latest release.
Works again, thank you very much :)
Hi there,
Just wanted to give a heads up on a small change that this plugin will need to support Kirby 4 (currently in development):
user
won't ever be null but always a state object. So it needs to check foruser.id === null
. Ideally even:For v4 we will likely keep the Vuex store around (even though not using it ourselves anymore), but it could be that for v5 (in summer 2024) we would drop it from the core. Then we would need to think about a better alternative for you.