File tree Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Expand file tree Collapse file tree 3 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 32
32
v-model:value =" rules[id]"
33
33
:is-admin =" isAdmin"
34
34
class =" approval-rule"
35
- delete-icon =" icon-delete"
36
35
@input =" onRuleInput(id, $event)"
37
36
@add-tag =" onAddTagClick" >
38
37
<template #extra-buttons >
39
38
<NcButton
40
39
type =" error"
41
40
@click =" onRuleDelete(id)" >
42
41
<template #icon >
43
- <DeleteIcon :size =" 20" />
42
+ <DeleteOutlineIcon :size =" 20" />
44
43
</template >
45
44
{{ t('approval', 'Delete workflow') }}
46
45
</NcButton >
119
118
<script >
120
119
import CheckIcon from ' vue-material-design-icons/Check.vue'
121
120
import TagIcon from ' vue-material-design-icons/Tag.vue'
122
- import DeleteIcon from ' vue-material-design-icons/Delete .vue'
121
+ import DeleteOutlineIcon from ' vue-material-design-icons/DeleteOutline .vue'
123
122
import PlusIcon from ' vue-material-design-icons/Plus.vue'
124
123
125
124
import NcEmptyContent from ' @nextcloud/vue/components/NcEmptyContent'
@@ -139,7 +138,7 @@ export default {
139
138
CheckIcon,
140
139
TagIcon,
141
140
PlusIcon,
142
- DeleteIcon ,
141
+ DeleteOutlineIcon ,
143
142
ApprovalRule,
144
143
NcEmptyContent,
145
144
NcButton,
Original file line number Diff line number Diff line change @@ -159,10 +159,6 @@ export default {
159
159
type: Object ,
160
160
required: true ,
161
161
},
162
- deleteIcon: {
163
- type: String ,
164
- default: ' ' ,
165
- },
166
162
focus: {
167
163
type: Boolean ,
168
164
default: false ,
Original file line number Diff line number Diff line change 3
3
* SPDX-License-Identifier: AGPL-3.0-or-later
4
4
*/
5
5
6
- import PendingIconSvg from '@mdi/svg/svg/dots-horizontal-circle.svg?raw'
6
+ import PendingIconSvg from '@mdi/svg/svg/dots-horizontal-circle-outline .svg?raw'
7
7
import ApprovedIconSvg from '../../../img/checkmark-green.svg?raw'
8
8
import RejectedIconSvg from '../../../img/close-red.svg?raw'
9
9
import { Permission , FileAction } from '@nextcloud/files'
You can’t perform that action at this time.
0 commit comments