Use close icon for the button that cancels the operation

Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
This commit is contained in:
Marco Ambrosini 2019-10-23 11:28:53 +02:00
Родитель 4b27209f20
Коммит 2d1ce3d9f3
2 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -150,7 +150,8 @@ export default {
quote() {
if (this.parent) {
return this.$store.getters.message(this.token, this.parent)
} else return undefined
}
return undefined
}
},
methods: {

Просмотреть файл

@ -37,7 +37,7 @@ components.
<div v-if="isNewMessageFormQuote" class="quote__main__right">
<Actions class="quote__main__right__actions">
<ActionButton
icon="icon-delete"
icon="icon-close"
:close-after-click="true"
@click.stop="handleAbortReply" />
</Actions>