mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
⚡ Fix order and set valid default value
This commit is contained in:
parent
814e619a03
commit
92b661d1a0
|
@ -795,6 +795,13 @@ export const cardFields = [
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The new received at field of the card.',
|
description: 'The new received at field of the card.',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Sort',
|
||||||
|
name: 'sort',
|
||||||
|
type: 'number',
|
||||||
|
default: 0,
|
||||||
|
description: 'The internally used sort value of a card.',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Spent Time',
|
displayName: 'Spent Time',
|
||||||
name: 'spentTime',
|
name: 'spentTime',
|
||||||
|
@ -832,13 +839,6 @@ export const cardFields = [
|
||||||
default: '',
|
default: '',
|
||||||
description: 'The new title of the card.',
|
description: 'The new title of the card.',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
displayName: 'Sort',
|
|
||||||
name: 'sort',
|
|
||||||
type: 'number',
|
|
||||||
default: '',
|
|
||||||
description: 'The internally used sort value of a card.',
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
] as INodeProperties[];
|
] as INodeProperties[];
|
||||||
|
|
Loading…
Reference in a new issue