Simplify checkboxes and fix disappearing of channel groups

This commit is contained in:
Bnyro
2023-05-08 14:13:32 +02:00
parent c217d5e4e3
commit 4343c5f9bc
3 changed files with 12 additions and 31 deletions

View File

@@ -95,10 +95,11 @@ export default {
const cursor = e.target.result;
if (cursor) {
const group = cursor.value;
this.channelGroups = this.channelGroups.concat({
this.channelGroups.push({
groupName: group.groupName,
channels: JSON.parse(group.channels),
});
cursor.continue();
}
};
},