File tree 3 files changed +1
-6
lines changed
3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ declare module 'vue' {
140
140
ListIcon : typeof import ( './src/components/Icons/ListIcon.vue' ) [ 'default' ]
141
141
ListRows : typeof import ( './src/components/ListViews/ListRows.vue' ) [ 'default' ]
142
142
LoadingIndicator : typeof import ( './src/components/Icons/LoadingIndicator.vue' ) [ 'default' ]
143
+ LucidePlus : typeof import ( '~icons/lucide/plus' ) [ 'default' ]
143
144
MarkAsDoneIcon : typeof import ( './src/components/Icons/MarkAsDoneIcon.vue' ) [ 'default' ]
144
145
MaximizeIcon : typeof import ( './src/components/Icons/MaximizeIcon.vue' ) [ 'default' ]
145
146
MenuIcon : typeof import ( './src/components/Icons/MenuIcon.vue' ) [ 'default' ]
Original file line number Diff line number Diff line change @@ -457,9 +457,6 @@ function parseRows(rows, columns = []) {
457
457
}
458
458
} else if (row == ' _assign' ) {
459
459
let assignees = JSON .parse (deal ._assign || ' []' )
460
- if (! assignees .length && deal .deal_owner ) {
461
- assignees = [deal .deal_owner ]
462
- }
463
460
_rows[row] = assignees .map ((user ) => ({
464
461
name: user,
465
462
image: getUser (user).user_image ,
Original file line number Diff line number Diff line change @@ -480,9 +480,6 @@ function parseRows(rows, columns = []) {
480
480
}
481
481
} else if (row == ' _assign' ) {
482
482
let assignees = JSON .parse (lead ._assign || ' []' )
483
- if (! assignees .length && lead .lead_owner ) {
484
- assignees = [lead .lead_owner ]
485
- }
486
483
_rows[row] = assignees .map ((user ) => ({
487
484
name: user,
488
485
image: getUser (user).user_image ,
You can’t perform that action at this time.
0 commit comments