We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e75c6d commit fcb080fCopy full SHA for fcb080f
1 file changed
deployment-configuration/helm/templates/auto-gatekeepers.yaml
@@ -106,10 +106,12 @@ data:
106
107
if (retryCount < 1) {
108
sessionStorage.setItem(retryKey, String(retryCount + 1));
109
- window.location.replace('/');
+ setTimeout(function() {
110
+ window.location.replace('/');
111
+ }, 100);
112
} else {
113
sessionStorage.removeItem(retryKey);
- setTimeout(() => document.getElementById('error-template').style.display = 'block', 200);
114
+ document.getElementById('error-template').style.display = 'block';
115
}
116
</script>
117
</body>
0 commit comments