This commit is contained in:
2025-12-01 03:10:27 +02:00
parent b17c779cfa
commit c5ca4162a3
+1 -1
View File
@@ -11,7 +11,7 @@ export class AppendOptions {
}
if (typeof data === 'string') {
Object.entries(JSON.parse(data.countries)).forEach(([k, v]) => target.append(new Option(v, k)));
Object.entries(JSON.parse(data)).forEach(([k, v]) => target.append(new Option(v, k)));
}
else {