Skip to content

Commit 224479a

Browse files
authored
Merge pull request #53776 from nextcloud/fix/comments-outlined-icons
2 parents 664b514 + 7d045f6 commit 224479a

File tree

10 files changed

+27
-27
lines changed

10 files changed

+27
-27
lines changed

apps/comments/src/components/Comment.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@
2626
<NcActionButton close-after-click
2727
@click="onEdit">
2828
<template #icon>
29-
<IconEdit :size="20" />
29+
<IconPencilOutline :size="20" />
3030
</template>
3131
{{ t('comments', 'Edit comment') }}
3232
</NcActionButton>
3333
<NcActionSeparator />
3434
<NcActionButton close-after-click
3535
@click="onDeleteWithUndo">
3636
<template #icon>
37-
<IconDelete :size="20" />
37+
<IconTrashCanOutline :size="20" />
3838
</template>
3939
{{ t('comments', 'Delete comment') }}
4040
</NcActionButton>
@@ -115,8 +115,8 @@ import NcUserBubble from '@nextcloud/vue/components/NcUserBubble'
115115
116116
import IconArrowRight from 'vue-material-design-icons/ArrowRight.vue'
117117
import IconClose from 'vue-material-design-icons/Close.vue'
118-
import IconDelete from 'vue-material-design-icons/Delete.vue'
119-
import IconEdit from 'vue-material-design-icons/Pencil.vue'
118+
import IconTrashCanOutline from 'vue-material-design-icons/TrashCanOutline.vue'
119+
import IconPencilOutline from 'vue-material-design-icons/PencilOutline.vue'
120120
121121
import CommentMixin from '../mixins/CommentMixin.js'
122122
import { mapStores } from 'pinia'
@@ -132,8 +132,8 @@ export default {
132132
components: {
133133
IconArrowRight,
134134
IconClose,
135-
IconDelete,
136-
IconEdit,
135+
IconTrashCanOutline,
136+
IconPencilOutline,
137137
NcActionButton,
138138
NcActions,
139139
NcActionSeparator,

apps/comments/src/views/Comments.vue

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
class="comments__empty"
2323
:name="t('comments', 'No comments yet, start the conversation!')">
2424
<template #icon>
25-
<MessageReplyTextIcon />
25+
<IconMessageReplyTextOutline />
2626
</template>
2727
</NcEmptyContent>
2828
<ul v-else>
@@ -51,12 +51,12 @@
5151
<template v-else-if="error">
5252
<NcEmptyContent class="comments__error" :name="error">
5353
<template #icon>
54-
<AlertCircleOutlineIcon />
54+
<IconAlertCircleOutline />
5555
</template>
5656
</NcEmptyContent>
5757
<NcButton class="comments__retry" @click="getComments">
5858
<template #icon>
59-
<RefreshIcon />
59+
<IconRefresh />
6060
</template>
6161
{{ t('comments', 'Retry') }}
6262
</NcButton>
@@ -72,9 +72,9 @@ import { vElementVisibility as elementVisibility } from '@vueuse/components'
7272
7373
import NcEmptyContent from '@nextcloud/vue/components/NcEmptyContent'
7474
import NcButton from '@nextcloud/vue/components/NcButton'
75-
import RefreshIcon from 'vue-material-design-icons/Refresh.vue'
76-
import MessageReplyTextIcon from 'vue-material-design-icons/MessageReplyText.vue'
77-
import AlertCircleOutlineIcon from 'vue-material-design-icons/AlertCircleOutline.vue'
75+
import IconRefresh from 'vue-material-design-icons/Refresh.vue'
76+
import IconMessageReplyTextOutline from 'vue-material-design-icons/MessageReplyTextOutline.vue'
77+
import IconAlertCircleOutline from 'vue-material-design-icons/AlertCircleOutline.vue'
7878
7979
import Comment from '../components/Comment.vue'
8080
import CommentView from '../mixins/CommentView'
@@ -89,9 +89,9 @@ export default {
8989
Comment,
9090
NcEmptyContent,
9191
NcButton,
92-
RefreshIcon,
93-
MessageReplyTextIcon,
94-
AlertCircleOutlineIcon,
92+
IconRefresh,
93+
IconMessageReplyTextOutline,
94+
IconAlertCircleOutline,
9595
},
9696
9797
directives: {

dist/7462-7462.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/7462-7462.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/comments-comments-app.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/comments-comments-app.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/comments-comments-tab.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/comments-comments-tab.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core-common.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core-common.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)