Translating retry connection error message and fixing E2E tests
This commit is contained in:
parent
51c3f1d972
commit
0be77164ec
7 changed files with 61 additions and 12 deletions
|
@ -1,5 +1,6 @@
|
|||
<script lang="ts">
|
||||
import { errorStore, hasClosableMessagesInErrorStore } from "../../Stores/ErrorStore";
|
||||
import { _ } from "../../Translator/Translator";
|
||||
|
||||
function close(): boolean {
|
||||
errorStore.clearClosableMessages();
|
||||
|
@ -8,7 +9,7 @@
|
|||
</script>
|
||||
|
||||
<div class="error-div nes-container is-dark is-rounded" open>
|
||||
<p class="nes-text is-error title">Error</p>
|
||||
<p class="nes-text is-error title">{_("error.error")}</p>
|
||||
<div class="body">
|
||||
{#each $errorStore as error}
|
||||
<p>{error.message}</p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue