Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/views/Buckets.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
div
h3 {{ $t('buckets.title') }}

b-alert(show)
| {{ $t('buckets.moreWatchers') }} #[a(href="https://docs.activitywatch.net/en/latest/watchers.html") {{ $t('buckets.docsLink') }}].

b-card.bucket-card.mb-3(
v-for="device in bucketsStore.bucketsByDevice",
:key="device.hostname || device.device_id",
Expand Down Expand Up @@ -149,6 +146,9 @@ div

hr

b-alert(show)
| {{ $t('buckets.moreWatchers') }} #[a(href="https://docs.activitywatch.net/en/latest/watchers.html") {{ $t('buckets.docsLink') }}].

aw-devonly(reason="This section is still under development")
h4.p-2 {{ $t('buckets.tools') }}

Expand Down
5 changes: 1 addition & 4 deletions src/views/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
div
h3 Search

b-alert(variant="warning" show)
| This feature is still in early development.

b-alert(v-if="error" show variant="danger")
| {{error}}

Expand Down Expand Up @@ -75,7 +72,7 @@ export default {
bid_window: 'aw-watcher-window_' + this.queryOptions.hostname,
bid_afk: 'aw-watcher-afk_' + this.queryOptions.hostname,
filter_afk: this.queryOptions.filter_afk,
categories: [[['searched'], { type: 'regex', regex: this.pattern }]],
categories: [[['searched'], { type: 'regex', regex: this.pattern, ignore_case: true }]],
filter_categories: [['searched']],
});
query += '; RETURN = events;';
Expand Down
Loading