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:
authorShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-03-07 12:07:23 +0300
committerShishkevich D. <135337715+shishkevichd@users.noreply.github.com>2025-03-07 12:07:23 +0300
commit0a207b8a2c0629b7f1996025a40a10fbe58d05d0 (patch)
tree17d8a98faecccbda02b98ede48adf020d5e8d2f9 /web/html/xui/warp_modal.html
parent26bf693dbdc2db0222ee37615e353f7ca1fdd3c1 (diff)
refactor: merging all util functions into classes
Diffstat (limited to 'web/html/xui/warp_modal.html')
-rw-r--r--web/html/xui/warp_modal.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/web/html/xui/warp_modal.html b/web/html/xui/warp_modal.html
index 3acd49e8..467f9854 100644
--- a/web/html/xui/warp_modal.html
+++ b/web/html/xui/warp_modal.html
@@ -65,15 +65,15 @@
</tr>
<tr>
<td>WARP+ Data</td>
- <td>[[ sizeFormat(warpModal.warpConfig.account.premium_data) ]]</td>
+ <td>[[ SizeFormatter.sizeFormat(warpModal.warpConfig.account.premium_data) ]]</td>
</tr>
<tr class="client-table-odd-row">
<td>Quota</td>
- <td>[[ sizeFormat(warpModal.warpConfig.account.quota) ]]</td>
+ <td>[[ SizeFormatter.sizeFormat(warpModal.warpConfig.account.quota) ]]</td>
</tr>
<tr v-if="!ObjectUtil.isEmpty(warpModal.warpConfig.account.usage)">
<td>Usage</td>
- <td>[[ sizeFormat(warpModal.warpConfig.account.usage) ]]</td>
+ <td>[[ SizeFormatter.sizeFormat(warpModal.warpConfig.account.usage) ]]</td>
</tr>
</template>
</table>