Skip to content

Commit

Permalink
chore: reduce unrelated changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shafin-deriv committed Sep 14, 2023
1 parent ca10f7f commit 88736e8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/bot-web-ui/src/stores/journal-store.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export default class JournalStore {
constructor(root_store, core) {
makeObservable(this, {
is_filter_dialog_visible: observable,
journal_filters: observable,
journal_filters: observable.shallow,
filters: observable.shallow,
unfiltered_messages: observable,
unfiltered_messages: observable.shallow,
toggleFilterDialog: action.bound,
onLogSuccess: action.bound,
onError: action.bound,
Expand All @@ -38,7 +38,9 @@ export default class JournalStore {
}

JOURNAL_CACHE = 'journal_cache';

is_filter_dialog_visible = false;

filters = [
{ id: message_types.ERROR, label: localize('Errors') },
{ id: message_types.NOTIFY, label: localize('Notifications') },
Expand Down

0 comments on commit 88736e8

Please sign in to comment.