Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMHSanaei <ho3ein.sanaei@gmail.com>2024-03-11 15:44:24 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2024-03-11 18:10:11 +0300
commit5b87b1253555b7e932f79bd86795e350f9f3de2e (patch)
tree711ca9b226f2cf9d041db50f81c975913c76ea23 /web/html/xui/index.html
parent8908e8b16a3457c1353cec163a79cd82338be336 (diff)
[sub] JSON sub enhancement + minor changes
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
Diffstat (limited to 'web/html/xui/index.html')
-rw-r--r--web/html/xui/index.html14
1 files changed, 5 insertions, 9 deletions
diff --git a/web/html/xui/index.html b/web/html/xui/index.html
index fe867214..157563c0 100644
--- a/web/html/xui/index.html
+++ b/web/html/xui/index.html
@@ -259,17 +259,13 @@
</a-layout-content>
</a-layout>
- <a-modal id="version-modal" v-model="versionModal.visible" title='{{ i18n "pages.index.xraySwitch" }}'
- :closable="true" @ok="() => versionModal.visible = false"
- :class="themeSwitcher.currentTheme"
- footer="">
+ <a-modal id="version-modal" v-model="versionModal.visible" title='{{ i18n "pages.index.xraySwitch" }}' :closable="true"
+ @ok="() => versionModal.visible = false" :class="themeSwitcher.currentTheme" footer="">
<a-alert type="warning" style="margin-bottom: 12px; width: fit-content"
- message='{{ i18n "pages.index.xraySwitchClickDesk" }}'
- show-icon
- ></a-alert>
+ message='{{ i18n "pages.index.xraySwitchClickDesk" }}' show-icon></a-alert>
<template v-for="version, index in versionModal.versions">
- <a-tag :color="index % 2 == 0 ? 'purple' : 'green'"
- style="margin-right: 10px" @click="switchV2rayVersion(version)">
+ <a-tag :color="index % 2 == 0 ? 'purple' : 'green'" style="margin-right: 12px; margin-bottom: 12px"
+ @click="switchV2rayVersion(version)">
[[ version ]]
</a-tag>
</template>