We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e282ad commit 49217d8Copy full SHA for 49217d8
src/components/gtt-setting.ts
@@ -8,7 +8,7 @@ export const gtt_setting = ():void => {
8
for (let i in glyph) {
9
if (glyph[i].font == font) {
10
document.querySelectorAll("[id^='settings_tracker_']").forEach((element: HTMLSelectElement) => {
11
- element.append(new Option(glyph[i].name, i))
+ element.append(new Option(i, i))
12
})
13
}
14
0 commit comments