fix: made user room number a string for added flexibility

This commit is contained in:
2025-05-06 21:45:53 +02:00
parent fd9380a61d
commit b7f9ee572e
12 changed files with 30 additions and 35 deletions

View File

@@ -19,7 +19,7 @@ export class SettingsComponent implements OnInit {
}
saveRoom(event: string[]) {
this.usettings.rooms = event.map(Number)
this.usettings.rooms = event
this.send()
}
saveCleanThings(event: string[]) {
@@ -61,6 +61,6 @@ export class SettingsComponent implements OnInit {
export interface IUSettings {
keyrooms: string[];
rooms: number[];
rooms: string[];
cleanThings: string[];
}