diff --git a/src/components/concepts/ConceptView.svelte b/src/components/concepts/ConceptView.svelte
index dbe082105..d5f9cd5d5 100644
--- a/src/components/concepts/ConceptView.svelte
+++ b/src/components/concepts/ConceptView.svelte
@@ -11,6 +11,7 @@
import type LocaleText from '../../locale/LocaleText';
import Progress from '../../tutorial/Progress';
import Link from '../app/Link.svelte';
+ import { TYPE_CLOSE_SYMBOL, TYPE_OPEN_SYMBOL } from '@parser/Symbols';
export let concept: Concept;
export let type: Type | undefined = undefined;
@@ -70,13 +71,16 @@
{/if}
{#if variables}{#each variables.variables as variable, index}{#if index > 0},
- {/if}{@const name = variable.names.getPreferredName(
- $locales.getLocales(),
- )}{#if name}{/if}{/each}{/if}{#if variables}
+ {TYPE_OPEN_SYMBOL}{#each variables.variables as variable, index}{#if index > 0},
+ {/if}{@const name = variable.names.getPreferredName(
+ $locales.getLocales(),
+ )}{#if name}{/if}{/each}{TYPE_CLOSE_SYMBOL}{/if}
diff --git a/src/components/lore/Speech.svelte b/src/components/lore/Speech.svelte
index 89cf80d6c..5c75d10f7 100644
--- a/src/components/lore/Speech.svelte
+++ b/src/components/lore/Speech.svelte
@@ -54,7 +54,7 @@
class:big
class:scroll
>
-