exclude removed inboundTags #85

This commit is contained in:
Alireza Ahmadi
2024-04-16 23:19:33 +02:00
parent f545bcb30c
commit 39ad029e20
+1 -1
View File
@@ -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: {