Skip to content

Commit 5be1535

Browse files
authored
Merge pull request #713 from Adamant-im/fix/back-icon-settins
fix: return back icons
2 parents 84e4fc0 + f889c57 commit 5be1535

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/components/AppToolbarCentered.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<container>
55
<v-toolbar ref="toolbar" :flat="flat" :height="height">
66
<v-btn v-if="showBack" icon size="small" @click="goBack">
7-
<v-icon :icon="mdiChevronLeft" size="x-large" />
7+
<v-icon :icon="mdiArrowLeft" size="x-large" />
88
</v-btn>
99

1010
<v-toolbar-title v-if="title" class="a-text-regular-enlarged">
@@ -20,7 +20,7 @@
2020
</template>
2121

2222
<script>
23-
import { mdiChevronLeft } from '@mdi/js'
23+
import { mdiArrowLeft } from '@mdi/js'
2424
2525
export default {
2626
props: {
@@ -55,7 +55,7 @@ export default {
5555
},
5656
setup() {
5757
return {
58-
mdiChevronLeft
58+
mdiArrowLeft
5959
}
6060
},
6161
computed: {

src/components/Chat/ChatToolbar.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
:content="numOfNewMessages > 99 ? '99+' : numOfNewMessages"
1010
>
1111
</v-badge>
12-
<v-icon :icon="mdiChevronLeft" />
12+
<v-icon :icon="mdiArrowLeft" />
1313
</v-btn>
1414
<div v-if="!isWelcomeChat(partnerId)">
1515
<slot name="avatar-toolbar" />
@@ -43,7 +43,7 @@
4343
<script>
4444
import partnerName from '@/mixins/partnerName'
4545
import { isAdamantChat, isWelcomeChat } from '@/lib/chat/meta/utils'
46-
import { mdiChevronLeft } from '@mdi/js'
46+
import { mdiArrowLeft } from '@mdi/js'
4747
4848
4949
export default {
@@ -57,7 +57,7 @@ export default {
5757
emits: ['partner-info'],
5858
setup() {
5959
return {
60-
mdiChevronLeft
60+
mdiArrowLeft
6161
}
6262
},
6363
computed: {

0 commit comments

Comments
 (0)