Skip to content

Commit 4541f26

Browse files
Merge pull request #12903 from nextcloud/backport/12662/stable5.7
[stable5.7] Minor UI fixes
2 parents 7e58ecd + 2b90705 commit 4541f26

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

src/components/EnvelopeList.vue

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,6 @@
113113
{{ n('mail', 'Forward {number} as attachment', 'Forward {number} as attachment', selection.length, { number: selection.length }) }}
114114
</ActionButton>
115115
</Actions>
116-
<MoveModal
117-
v-if="showMoveModal"
118-
:account="account"
119-
:envelopes="selectedEnvelopes"
120-
:move-thread="true"
121-
@close="onCloseMoveModal" />
122116
</div>
123117
</transition>
124118

@@ -154,6 +148,13 @@
154148
:envelopes="selectedEnvelopes"
155149
@close="onCloseTagModal" />
156150

151+
<MoveModal
152+
v-if="showMoveModal"
153+
:account="account"
154+
:envelopes="selectedEnvelopes"
155+
:move-thread="true"
156+
@close="onCloseMoveModal" />
157+
157158
<NcDialog
158159
v-if="showQuickActionsSettings"
159160
:name="t('mail', 'Manage quick actions')"
@@ -172,6 +173,7 @@ import AlertOctagonIcon from 'vue-material-design-icons/AlertOctagonOutline.vue'
172173
import IconSelect from 'vue-material-design-icons/CloseThick.vue'
173174
import EmailRead from 'vue-material-design-icons/EmailOpenOutline.vue'
174175
import EmailUnread from 'vue-material-design-icons/EmailOutline.vue'
176+
import ImportantIcon from 'vue-material-design-icons/LabelVariant.vue'
175177
import ImportantOutlineIcon from 'vue-material-design-icons/LabelVariantOutline.vue'
176178
import OpenInNewIcon from 'vue-material-design-icons/OpenInNew.vue'
177179
import AddIcon from 'vue-material-design-icons/Plus.vue'
@@ -204,6 +206,7 @@ export default {
204206
ActionButton,
205207
Envelope,
206208
IconDelete,
209+
ImportantIcon,
207210
ImportantOutlineIcon,
208211
IconFavorite,
209212
IconSelect,

0 commit comments

Comments
 (0)