diff --git a/src/concepts/StreamConcept.ts b/src/concepts/StreamConcept.ts index bd5bc99c2..c039b7ac4 100644 --- a/src/concepts/StreamConcept.ts +++ b/src/concepts/StreamConcept.ts @@ -43,9 +43,11 @@ export default class StreamConcept extends Concept { getGlyphs(locales: Locales) { return { - symbols: this.definition.names - .getLocaleNames(locales) - .join(COMMA_SYMBOL), + symbols: + this.definition.names.getSymbolicName() ?? + this.definition.names + .getLocaleNames(locales) + .join(COMMA_SYMBOL), }; }