Skip to content

Commit

Permalink
fixup! Add option to configure notification level per board
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusknorr committed Oct 12, 2020
1 parent 564d47f commit f203553
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/navigation/AppNavigationBoard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,19 @@
name="notification"
:checked="board.settings['notify-due'] === 'all'"
@change="updateSetting('notify-due', 'all')">
All cards
{{ t('deck', 'All cards') }}
</ActionRadio>
<ActionRadio v-if="showDueSettings"
name="notification"
:checked="board.settings['notify-due'] === 'assigned'"
@change="updateSetting('notify-due', 'assigned')">
Assigned cards
{{ t('deck', 'Assigned cards') }}
</ActionRadio>
<ActionRadio v-if="showDueSettings"
name="notification"
:checked="board.settings['notify-due'] === 'off'"
@change="updateSetting('notify-due', 'off')">
Off
{{ t('deck', 'No notifications') }}
</ActionRadio>

<ActionButton v-if="canManage && !showDueSettings"
Expand Down

0 comments on commit f203553

Please sign in to comment.