chore(deps): update module github.com/coreos/go-oidc to v3 - autoclosed #17

Closed
renovate-bot wants to merge 55 commits from renovate/github.com-coreos-go-oidc-3.x into master
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 4ab99a55ad - Show all commits

View File

@ -2,7 +2,7 @@
import { ToastsStore } from '../stores/toasts';
</script>
<div class="toast-container position-absolute top-0 end-0 p-3">
<div class="toast-container position-fixed top-0 end-0 p-3">
{#each $ToastsStore.toasts as toast}
<div class="toast show" role="alert">
<div class="toast-header">

View File

@ -32,8 +32,8 @@
.catch((response) => {
pleaseWait = false;
if (response.data)
addToast({
variant: "danger",
ToastsStore.addToast({
color: "danger",
title: "Connexion impossible",
msg: (response.data ? response.data.errmsg : "Impossible de contacter le serveur"),
});