Lots of channel related fixes and updates

This commit is contained in:
N-Pex 2024-10-11 17:04:32 +02:00
parent e3bfede77e
commit ca777a83be
17 changed files with 508 additions and 59 deletions

View file

@ -50,5 +50,13 @@ export default {
this.$emit("close");
this.$emit("more", {event:this.event});
},
pin() {
this.$emit("close");
this.$emit("pin", {event:this.event});
},
unpin() {
this.$emit("close");
this.$emit("unpin", {event:this.event});
},
}
}