New Persist
option in variables
#6
Closed
alexiglesias93
started this conversation in
RFCs
Replies: 1 comment
-
Closing this as it was already shipped. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The only available way to persist data in Wized right now is to use cookies.
Cookies are great for many use cases, like storing session IDs, auth tokens, or any other small bits of info.
But they are not great at storing large amounts of data. For that, it's often better to rely on localStorage or sessionStorage.
I think we can provide support for that by simply adding a new Persist option inside the variables panel like this:
Users would be able to select between:
If selected, Wized would:
JSON.stringify
, Wized would automatically do it.Initial Value
.Beta Was this translation helpful? Give feedback.
All reactions