Skip to content

Commit 35a1778

Browse files
committed
fix: better descriptions for options
1 parent c1be8b5 commit 35a1778

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

src/views/activity/Activity.vue

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,13 @@ div
6565
div.row
6666
div.col-lg-6
6767
b-form-checkbox(v-model="filterAFK")
68-
| Exclude time away from computer
69-
b-form-checkbox(v-model="includeAudible")
70-
| Always treat browsers playing audio or video as active
68+
| Exclude AFK time
69+
icon#filterAFKHelp(name="question-circle" style="opacity: 0.4")
70+
b-tooltip(target="filterAFKHelp" v-b-tooltip.hover title="Filter away time where the AFK watcher couldn't detect input.")
71+
b-form-checkbox(v-model="includeAudible" :disabled="!filterAFK" )
72+
| Count audible browser tab as active
73+
icon#includeAudibleHelp(name="question-circle" style="opacity: 0.4")
74+
b-tooltip(target="includeAudibleHelp" v-b-tooltip.hover title="If the active window is an audible browser tab, count as active. Requires a browser watcher.")
7175

7276
div.col-lg-6
7377
b-form-group(label="Show category:" label-cols="6" label-cols-lg="4")
@@ -131,6 +135,7 @@ import 'vue-awesome/icons/plus';
131135
import 'vue-awesome/icons/edit';
132136
import 'vue-awesome/icons/times';
133137
import 'vue-awesome/icons/save';
138+
import 'vue-awesome/icons/question-circle';
134139
135140
export default {
136141
name: 'Activity',

0 commit comments

Comments
 (0)