Skip to content

Commit

Permalink
[*]尝试修复隧道数量统计
Browse files Browse the repository at this point in the history
  • Loading branch information
Muska-Ami authored Jun 3, 2024
1 parent 08323bd commit cac107a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/Dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ async function changeShowFrptoken(event) {
}
const traffic = ref(Number(localStorage.getItem('traffic')) / 1024 + 'GB')
const Proxiesanimation = ref(Number(store.getters.get_proxies_num))
const Proxiesanimation = ref(Number(store.getters.get_proxies_num || localStorage.getItem('proxies_num')))
const TrafficRef = ref(null)
const boardcast_html = ref('')
const boardcast_show = ref(true)
Expand Down

0 comments on commit cac107a

Please sign in to comment.