Fix display issue with AccountID before Operation & other small fixes

This commit is contained in:
Jan Oberhauser
2021-04-02 18:10:22 +02:00
parent 7995bd610d
commit b406d4b60b
11 changed files with 126 additions and 125 deletions

View File

@@ -1,4 +1,4 @@
import {
import {
INodeProperties,
} from 'n8n-workflow';
@@ -153,6 +153,16 @@ export const timeEntryFields = [
default: true,
description: 'Pass true to only return running time entries and false to return non-running time entries.',
},
{
displayName: 'Page',
name: 'page',
type: 'number',
typeOptions: {
minValue: 1,
},
default: 1,
description: 'The page number to use in pagination. For instance, if you make a list request and receive 100 records, your subsequent call can include page=2 to retrieve the next page of the list. (Default: 1)',
},
{
displayName: 'To',
name: 'to',
@@ -167,16 +177,6 @@ export const timeEntryFields = [
default: '',
description: 'Only return time entries that have been updated since the given date and time.',
},
{
displayName: 'Page',
name: 'page',
type: 'number',
typeOptions: {
minValue: 1,
},
default: 1,
description: 'The page number to use in pagination. For instance, if you make a list request and receive 100 records, your subsequent call can include page=2 to retrieve the next page of the list. (Default: 1)',
},
{
displayName: 'User ID',
name: 'user_id',