Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiesun committed Mar 27, 2024
2 parents b119319 + 8f4a55f commit 4d7c9e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions assets/buildinfo.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
BuildVersion=latest v8.0.7 2024-03-09 21:51:35
BuildVersion=latest v8.0.7 2024-03-27 23:11:07
ReleaseVersion=v8.0.7
BuildTime=2024-03-09 21:51:35
BuildTime=2024-03-27 23:11:07
BuildName=toughradius
CommitID=e4b1c030cfcdf196dd0cbfb667bc2181b989beae
CommitDate=Thu, 22 Feb 2024 15:35:45 +0800
CommitID=32441eff5ab84a65fc3c574a657602607dd44573
CommitDate=Wed, 27 Mar 2024 23:10:19 +0800
CommitUser=jamiesun.net@gmail.com
CommitSubject=2024-02-22 15:35:37 :
CommitSubject=fix template
2 changes: 1 addition & 1 deletion assets/templates/radius_profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@
id: "down_rate",
header: [tr("radius","DownRate (Mbps)")],
template: function (obj) {
return Number(obj.up_rate) / 1000
return Number(obj.down_rate) / 1000
},
adjust: true,
sort: "server",
Expand Down
2 changes: 1 addition & 1 deletion assets/templates/radius_users.html
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@
id: "down_rate",
header: [tr("radius","DownRate (Mbps)")],
template: function (obj) {
return Number(obj.up_rate) / 1000
return Number(obj.down_rate) / 1000
},
adjust: true,
sort: "server",
Expand Down

0 comments on commit 4d7c9e9

Please sign in to comment.