ui: Don't change page title if challenge info are not loaded
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5d25024481
commit
48895af3e8
@ -145,8 +145,10 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
<title>{$challengeInfo.title}</title>
|
{#if $challengeInfo}
|
||||||
<meta name="author" content="{$challengeInfo.authors}">
|
<title>{$challengeInfo.title}</title>
|
||||||
|
<meta name="author" content="{$challengeInfo.authors}">
|
||||||
|
{/if}
|
||||||
</svelte:head>
|
</svelte:head>
|
||||||
|
|
||||||
<!--Styles /-->
|
<!--Styles /-->
|
||||||
|
Loading…
Reference in New Issue
Block a user