We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
See this code in debug_toolbar/static/debug_toolbar/js/toolbar.js:
"sameSite" in options ? "; sameSite=" + options.samesite : "; sameSite=Lax",
Shouldn’t this be?
"sameSite" in options ? "; sameSite=" + options.sameSite <<< Capital S : "; sameSite=Lax",
The text was updated successfully, but these errors were encountered:
Good find, that's correct.
I wonder if we shouldn't lowercase all keys though, according to https://developer.mozilla.org/en-US/docs/Web/API/Document/cookie all standard keys use kebab-case names. That would probably be more consistent.
Sorry, something went wrong.
kebab-case :-DDD
|| That would probably be more consistent.
Yes I think so.
3b87b93
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
See this code in debug_toolbar/static/debug_toolbar/js/toolbar.js:
Shouldn’t this be?
The text was updated successfully, but these errors were encountered: