Skip to content
Open
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
17 changes: 10 additions & 7 deletions src/components/EnvelopeList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,7 @@
{{ n('mail', 'Forward {number} as attachment', 'Forward {number} as attachment', selection.length, { number: selection.length }) }}
</ActionButton>
</Actions>
<MoveModal
v-if="showMoveModal"
:account="account"
:envelopes="selectedEnvelopes"
:move-thread="true"
@close="onCloseMoveModal" />
</div>
</div>

Check failure on line 116 in src/components/EnvelopeList.vue

View workflow job for this annotation

GitHub Actions / NPM lint

Expected indentation of 3 tabs but found 4 tabs
</transition>

<transition-group :name="listTransitionName">
Expand Down Expand Up @@ -154,6 +148,13 @@
:envelopes="selectedEnvelopes"
@close="onCloseTagModal" />

<MoveModal
v-if="showMoveModal"
:account="account"
:envelopes="selectedEnvelopes"
:move-thread="true"
@close="onCloseMoveModal" />

<NcDialog
v-if="showQuickActionsSettings"
:name="t('mail', 'Manage quick actions')"
Expand All @@ -172,6 +173,7 @@
import IconSelect from 'vue-material-design-icons/CloseThick.vue'
import EmailRead from 'vue-material-design-icons/EmailOpenOutline.vue'
import EmailUnread from 'vue-material-design-icons/EmailOutline.vue'
import ImportantIcon from 'vue-material-design-icons/LabelVariant.vue'
import ImportantOutlineIcon from 'vue-material-design-icons/LabelVariantOutline.vue'
import OpenInNewIcon from 'vue-material-design-icons/OpenInNew.vue'
import AddIcon from 'vue-material-design-icons/Plus.vue'
Expand Down Expand Up @@ -204,6 +206,7 @@
ActionButton,
Envelope,
IconDelete,
ImportantIcon,
ImportantOutlineIcon,
IconFavorite,
IconSelect,
Expand Down
Loading