feat(frontend): show error ID for internal server errors
This commit is contained in:
parent
83b62b4845
commit
a0ba712632
8 changed files with 1554 additions and 25 deletions
|
@ -18,6 +18,14 @@
|
|||
</svelte:element>
|
||||
{/if}
|
||||
<p>{errorDescription($t, error.code)}</p>
|
||||
{#if error.error_id}
|
||||
<p>
|
||||
{$t("error.error-id")}
|
||||
<code>
|
||||
{error.error_id}
|
||||
</code>
|
||||
</p>
|
||||
{/if}
|
||||
{#if error.errors}
|
||||
<details>
|
||||
<summary>{$t("error.extra-info-header")}</summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue