Skip to content

Commit 7c3e9d7

Browse files
fix(files): replace outline plus icon with normal one
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
1 parent 924814a commit 7c3e9d7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/components/CreateSampleButton.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<template>
77
<NcButton type="secondary" @click="onNewNote">
8-
<PlusOutlineIcon slot="icon" :size="20" />
8+
<Plus slot="icon" :size="20" />
99
{{ t('notes', 'Create a sample note with Markdown') }}
1010
</NcButton>
1111
</template>
@@ -15,15 +15,15 @@ import {
1515
NcButton,
1616
} from '@nextcloud/vue'
1717
18-
import PlusOutlineIcon from 'vue-material-design-icons/PlusOutline.vue'
18+
import Plus from 'vue-material-design-icons/Plus.vue'
1919
2020
import { createNote } from '../NotesService.js'
2121
import { getDefaultSampleNote, getDefaultSampleNoteTitle } from '../Util.js'
2222
2323
export default {
2424
components: {
2525
NcButton,
26-
PlusOutlineIcon,
26+
Plus,
2727
},
2828
2929
methods: {

src/components/Dashboard.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</NcDashboardWidget>
2727
<div v-if="!loading" class="buttons-footer">
2828
<NcButton :href="createNoteUrl">
29-
<PlusOutline slot="icon" :size="20" />
29+
<Plus slot="icon" :size="20" />
3030
{{ t('notes', 'New note') }}
3131
</NcButton>
3232
</div>
@@ -37,7 +37,7 @@
3737
import { NcButton, NcDashboardWidget, NcDashboardWidgetItem } from '@nextcloud/vue'
3838
import { generateUrl } from '@nextcloud/router'
3939
40-
import PlusOutline from 'vue-material-design-icons/PlusOutline.vue'
40+
import Plus from 'vue-material-design-icons/Plus.vue'
4141
4242
import { getDashboardData } from '../NotesService.js'
4343
import { categoryLabel } from '../Util.js'
@@ -49,7 +49,7 @@ export default {
4949
NcButton,
5050
NcDashboardWidget,
5151
NcDashboardWidgetItem,
52-
PlusOutline,
52+
Plus,
5353
},
5454
5555
data() {

src/components/Welcome.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</div>
1313
<div class="feature">
1414
<NcButton type="secondary" @click="onNewNote">
15-
<PlusOutlineIcon slot="icon" :size="20" />
15+
<Plus slot="icon" :size="20" />
1616
{{ t('notes', 'New note') }}
1717
</NcButton>
1818
</div>
@@ -39,7 +39,7 @@ import {
3939
NcButton,
4040
} from '@nextcloud/vue'
4141
42-
import PlusOutlineIcon from 'vue-material-design-icons/PlusOutline.vue'
42+
import Plus from 'vue-material-design-icons/Plus.vue'
4343
4444
import CreateSampleButton from './CreateSampleButton.vue'
4545
import HelpMobile from './HelpMobile.vue'
@@ -54,7 +54,7 @@ export default {
5454
HelpMobile,
5555
NcAppContent,
5656
NcButton,
57-
PlusOutlineIcon,
57+
Plus,
5858
},
5959
6060
methods: {

0 commit comments

Comments
 (0)