From a148d3dcbf42fe5b85432a6d3ad9b281fc4488d7 Mon Sep 17 00:00:00 2001 From: "Amy J. Ko" Date: Sun, 24 Nov 2024 10:31:06 -0800 Subject: [PATCH] Use symbolic name for stream concept if available. --- src/concepts/StreamConcept.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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), }; }