Skip to content

Commit b8979fa

Browse files
authored
Merge pull request #220 from nextcloud/enh/noid/outlined-icons
chore: use the outline style for the key icons
2 parents e0b49de + 933ad20 commit b8979fa

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/components/AdminSettings.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
@focus="readonly = false"
3838
@update:model-value="onInput">
3939
<template #icon>
40-
<KeyIcon :size="20" />
40+
<KeyOutlineIcon :size="20" />
4141
</template>
4242
</NcTextField>
4343
<NcTextField
@@ -52,7 +52,7 @@
5252
@focus="readonly = false"
5353
@update:model-value="onInput">
5454
<template #icon>
55-
<KeyIcon :size="20" />
55+
<KeyOutlineIcon :size="20" />
5656
</template>
5757
</NcTextField>
5858
<br>
@@ -71,7 +71,7 @@
7171
@focus="readonly = false"
7272
@update:model-value="onInput">
7373
<template #icon>
74-
<KeyIcon :size="20" />
74+
<KeyOutlineIcon :size="20" />
7575
</template>
7676
</NcTextField>
7777
<div v-if="defaultTokenConnected" class="line">
@@ -119,7 +119,7 @@
119119
</template>
120120

121121
<script>
122-
import KeyIcon from 'vue-material-design-icons/Key.vue'
122+
import KeyOutlineIcon from 'vue-material-design-icons/KeyOutline.vue'
123123
import CheckIcon from 'vue-material-design-icons/Check.vue'
124124
125125
import GithubIcon from './icons/GithubIcon.vue'
@@ -146,7 +146,7 @@ export default {
146146
NcNoteCard,
147147
NcFormBox,
148148
NcFormBoxSwitch,
149-
KeyIcon,
149+
KeyOutlineIcon,
150150
CheckIcon,
151151
},
152152

src/components/PersonalSettings.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
@keyup.enter="connectWithToken"
5353
@trailing-button-click="state.token = ''">
5454
<template #icon>
55-
<KeyIcon :size="20" />
55+
<KeyOutlineIcon :size="20" />
5656
</template>
5757
</NcTextField>
5858
<NcButton v-if="!connected"
@@ -112,7 +112,7 @@
112112

113113
<script>
114114
import OpenInNewIcon from 'vue-material-design-icons/OpenInNew.vue'
115-
import KeyIcon from 'vue-material-design-icons/Key.vue'
115+
import KeyOutlineIcon from 'vue-material-design-icons/KeyOutline.vue'
116116
import CheckIcon from 'vue-material-design-icons/Check.vue'
117117
import CloseIcon from 'vue-material-design-icons/Close.vue'
118118
@@ -140,7 +140,7 @@ export default {
140140
NcTextField,
141141
NcFormBox,
142142
NcFormBoxSwitch,
143-
KeyIcon,
143+
KeyOutlineIcon,
144144
CheckIcon,
145145
CloseIcon,
146146
OpenInNewIcon,

0 commit comments

Comments
 (0)