Skip to content

Commit

Permalink
Fix refactoring regression
Browse files Browse the repository at this point in the history
  • Loading branch information
justvanrossum committed Dec 22, 2024
1 parent f12ad6f commit 9fd7623
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/fontra/client/web-components/glyphs-search-list.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ export class GlyphsSearchList extends UnlitElement {
this.searchField.glyphMap = glyphMap;
}

updateGlyphNamesListContent() {
this.searchField.updateGlyphNamesListContent();
}

getSelectedGlyphName() {
return this.glyphNamesList.items[this.glyphNamesList.selectedItemIndex]?.glyphName;
}
Expand Down

0 comments on commit 9fd7623

Please sign in to comment.