Skip to content

Commit

Permalink
fixup! feat: mail filters
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Kesselberg <[email protected]>
  • Loading branch information
kesselb committed Oct 1, 2024
1 parent 840cd43 commit 0dee6d1
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/components/mailFilter/Operator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
-->
<template>
<div>
<div class="mail-filter-row">
<div>
<p>{{ t('mail', 'Operator') }}</p>
</div>
<div class="mail-filter-row">
<div>
<NcCheckboxRadioSwitch :checked="filter.operator"
value="allof"
name="sharing_permission_radio"
type="radio"
@update:checked="updateFilter('allof')">
{{ t('mail', 'allof') }}
allof ({{ t('mail', 'If all tests pass, then the actions will be executed.') }})
</NcCheckboxRadioSwitch>
<NcCheckboxRadioSwitch :checked="filter.operator"
value="anyof"
Expand Down Expand Up @@ -46,9 +46,3 @@ export default {
},
}
</script>
<style lang="scss" scoped>
.mail-filter-row {
display: flex;
gap: 5px;
}
</style>

0 comments on commit 0dee6d1

Please sign in to comment.