Skip to content

Commit

Permalink
fix: dashboard text error #98
Browse files Browse the repository at this point in the history
  • Loading branch information
0xJacky committed Apr 14, 2023
1 parent 865d2ce commit 80e00df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/views/dashboard/DashBoard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const cpu_analytic_series = reactive([{name: 'User', data: <any>[]}, {name: 'Tot
const net_analytic = reactive([{name: $gettext('Receive'), data: <any>[]},
{name: $gettext('Send'), data: <any>[]}])
const disk_io_analytic = reactive([{name: $gettext('Writes'), data: <any>[]},
{name: $gettext('Writes'), data: <any>[]}])
{name: $gettext('Reads'), data: <any>[]}])
const memory = reactive({})
const disk = reactive({})
const disk_io = reactive({writes: 0, reads: 0})
Expand Down

0 comments on commit 80e00df

Please sign in to comment.