fix(rewriter): prevent mixing of cached rule engines (#44) #45

Merged
wpetit merged 3 commits from issue-44 into develop 2024-10-21 14:07:54 +02:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit c0470ca623 - Show all commits

View File

@ -55,6 +55,8 @@
border-radius: 5px;
box-shadow: 2px 2px #cccccc1c;
color: #810000 !important;
max-width: 80%;
overflow-x: hidden;
}
.title {
@ -81,7 +83,7 @@
<div id="card">
<h2 class="title">Une erreur est survenue !</h2>
{{ if .Debug }}
<pre>{{ .Err }}</pre>
<pre style="overflow-x: auto">{{ .Err }}</pre>
{{ end }}
{{/* if a public base url is provided, show navigation link */}}
{{ $oidc := ( index .Layer.Options "oidc" ) }}