Skip to content

Commit 49217d8

Browse files
committed
Fixed plugin settings font name
Signed-off-by: Ko Nagase <[email protected]>
1 parent 6e282ad commit 49217d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/gtt-setting.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export const gtt_setting = ():void => {
88
for (let i in glyph) {
99
if (glyph[i].font == font) {
1010
document.querySelectorAll("[id^='settings_tracker_']").forEach((element: HTMLSelectElement) => {
11-
element.append(new Option(glyph[i].name, i))
11+
element.append(new Option(i, i))
1212
})
1313
}
1414
}

0 commit comments

Comments
 (0)