Skip to content

Commit

Permalink
Use symbolic name for stream concept if available.
Browse files Browse the repository at this point in the history
  • Loading branch information
amyjko committed Nov 24, 2024
1 parent f6bd778 commit a148d3d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/concepts/StreamConcept.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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),
};
}

Expand Down

0 comments on commit a148d3d

Please sign in to comment.