You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The normalization passes for challenge metadata lead to undesirable behavior for {{link('/') because it is translated into an empty anchor tag. The href information is populated correctly, but the leading / is trimmed by the capture in urlPathPattern (loader.go:68).
I recall having to drop the leading slash during early development because it caused issues with flask but it would be possible to reinsert it into the generated HTML for inside of the anchors while leaving it out of the href.
The text was updated successfully, but these errors were encountered:
The normalization passes for challenge metadata lead to undesirable behavior for
{{link('/')
because it is translated into an empty anchor tag. The href information is populated correctly, but the leading/
is trimmed by the capture inurlPathPattern
(loader.go:68
).I recall having to drop the leading slash during early development because it caused issues with flask but it would be possible to reinsert it into the generated HTML for inside of the anchors while leaving it out of the href.
The text was updated successfully, but these errors were encountered: