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>2023-12-04 23:21:14 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2023-12-04 23:21:14 +0300
commit375814da273cd2548c30fc56a86dd74ef5f009c9 (patch)
tree4409f350f8a588aa5e82c06757654e971904b575 /web/html/xui/inbound_client_table.html
parentba2d02ae1d1ff202c290c0c4800a1ea30a36c823 (diff)
[bug] fix status colors in pages
Co-Authored-By: Alireza Ahmadi <alireza7@gmail.com>
Diffstat (limited to 'web/html/xui/inbound_client_table.html')
-rw-r--r--web/html/xui/inbound_client_table.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/inbound_client_table.html b/web/html/xui/inbound_client_table.html
index e977e6b5..c788b9fd 100644
--- a/web/html/xui/inbound_client_table.html
+++ b/web/html/xui/inbound_client_table.html
@@ -85,7 +85,7 @@
:percent="statsProgress(record, client.email)"/>
</td>
<td width="120px" v-else-if="client.totalGB > 0">
- <a-progress :stroke-color="statsColor(record, client.email)"
+ <a-progress :stroke-color="clientStatsColor(record, client.email)"
:show-info="false"
:status="isClientOnline(client.email)? 'active' : isClientEnabled(record, client.email)? 'exception' : ''"
:percent="statsProgress(record, client.email)"/>
@@ -201,7 +201,7 @@
</tr>
</table>
</template>
- <a-progress :stroke-color="statsColor(record, client.email)"
+ <a-progress :stroke-color="clientStatsColor(record, client.email)"
:show-info="false"
:status="isClientOnline(client.email)? 'active' : isClientEnabled(record, client.email)? 'exception' : ''"
:percent="statsProgress(record, client.email)"/>