diff --git a/src/components/app/ServerTemplate/ChannelsList.vue b/src/components/app/ServerTemplate/ChannelsList.vue index 6d7642a..09f42ed 100644 --- a/src/components/app/ServerTemplate/ChannelsList.vue +++ b/src/components/app/ServerTemplate/ChannelsList.vue @@ -98,7 +98,7 @@ export default { get() { const channelsIds = this.$store.getters["servers/channelsIDs"][this.serverID]; if (!channelsIds) {return false} - return channelsIds.map(id => this.channels[id]) + return channelsIds.map(id => this.channels[id]).filter(c => c.server_id === this.serverID) }, set(value) { this.$store.dispatch('servers/setChannelIDs', {serverID: this.serverID, channelIDs: value.map(c => c.channelID)} ) diff --git a/src/utils/changelog.js b/src/utils/changelog.js index 47936b9..0ea8f67 100644 --- a/src/utils/changelog.js +++ b/src/utils/changelog.js @@ -28,7 +28,6 @@ const config = [ title: "Move servers", shortTitle: "", date: "08/11/2019", - headColor: "#0c7b7f", new: [ "You can now move servers to make your list more organized." ],