This commit is contained in:
2025-12-02 21:56:36 +02:00
parent 718beee739
commit 82272f2090
2 changed files with 7 additions and 5 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { Ut } from ".";
import { Ut } from "./Ut";
export class AppendOptions {
@@ -9,7 +9,7 @@ export class AppendOptions {
if (opts.clear) {
this.replaceChildren();
}
Ut.each(Ut.isStr(data) ? JSON.parse(data) : data, (val, id) => target.append(new Option(val, id)) );
}
}