2👍
I fixed the problem by reloading the page on back navigation:
window.onpageshow = function(event) {
if (event.persisted) {
window.location.reload() ;
}
};
Source:stackexchange.com
2👍
I fixed the problem by reloading the page on back navigation:
window.onpageshow = function(event) {
if (event.persisted) {
window.location.reload() ;
}
};