small fixes

This commit is contained in:
Alireza Ahmadi
2024-06-30 22:32:19 +02:00
parent 7d441723ba
commit f169064fbc
5 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
{{ $t('actions.' + title) + " " + $t('objects.client') }}
</v-card-title>
<v-divider></v-divider>
<v-card-text style="padding: 0 16px;">
<v-card-text style="padding: 0 16px; overflow-y: scroll;">
<v-container style="padding: 0;">
<v-tabs
v-model="tab"
+1 -2
View File
@@ -5,7 +5,7 @@
{{ $t('actions.' + title) + " " + $t('objects.inbound') }}
</v-card-title>
<v-divider></v-divider>
<v-card-text style="padding-top: 0; overflow-y: scroll;">
<v-card-text style="padding: 0 16px; overflow-y: scroll;">
<v-container style="padding: 0;">
<v-row>
<v-col cols="12" sm="6" md="4">
@@ -60,7 +60,6 @@
<AddrVue :addr="addr" :hasTls="Object.hasOwn(inbound,'tls')" />
</template>
</v-card>
<pre dir="ltr">{{ inData }}</pre>
</v-window-item>
</v-window>
</v-container>
+2
View File
@@ -157,6 +157,7 @@ export default {
this.outbound = createOutbound("direct",{ tag: "direct-" + RandomUtil.randomSeq(3) })
this.title = "add"
}
this.tab = "t1"
this.outboundStats = this.$props.stats
},
changeType() {
@@ -183,6 +184,7 @@ export default {
if (msg.success) {
this.outbound = msg.obj
this.tab = "t1"
this.link = ""
}
}
}