Skip to content

Commit

Permalink
fix(ui): auto-refresh button is now a toggle
Browse files Browse the repository at this point in the history
closes #1802
  • Loading branch information
brian-mulier-p committed Jul 24, 2023
1 parent 932783c commit cac3cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/components/layout/RefreshButton.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<el-button-group>
<el-button @click="toggleAutoRefresh" :pressed="autoRefresh">
<el-button @click="toggleAutoRefresh" :type="autoRefresh ? 'primary' : 'default'">
<kicon :tooltip="$t('toggle periodic refresh each 10 seconds')" placement="bottom">
<clock />
</kicon>
Expand Down

0 comments on commit cac3cbf

Please sign in to comment.