fix: Antenna Genius show only available antennas per band

This commit is contained in:
2026-07-09 15:52:04 +02:00
parent e487aa78f3
commit 5ae2bad549
5 changed files with 66 additions and 9 deletions
+2
View File
@@ -117,6 +117,7 @@ export namespace antgenius {
export class Antenna {
index: number;
name: string;
bands: number;
static createFrom(source: any = {}) {
return new Antenna(source);
@@ -126,6 +127,7 @@ export namespace antgenius {
if ('string' === typeof source) source = JSON.parse(source);
this.index = source["index"];
this.name = source["name"];
this.bands = source["bands"];
}
}
export class Status {