diff --git a/frontend/src/layouts/modals/Client.vue b/frontend/src/layouts/modals/Client.vue index bf22168..942cade 100644 --- a/frontend/src/layouts/modals/Client.vue +++ b/frontend/src/layouts/modals/Client.vue @@ -210,7 +210,7 @@ export default { }, computed: { clientInbounds: { - get() { return this.client.inbounds == "" ? [] : this.client.inbounds.split(',') }, + get() { return this.client.inbounds == "" ? [] : this.client.inbounds.split(',').filter(i => this.inboundTags.includes(i)) }, set(newValue:string[]) { this.client.inbounds = newValue.length == 0 ? "" : newValue.join(',') } }, expDate: {