Skip to content

Commit 36c5b1c

Browse files
bwright-scottlogicgliptak
authored andcommitted
Remove prettier-ignore comment and format file in second file.
Signed-off-by: bwright-scottlogic <bwright@scottlogic.com>
1 parent 999f9b8 commit 36c5b1c

1 file changed

Lines changed: 29 additions & 6 deletions

File tree

webapps/frontend/ui/monitoring/plugins/base/app/views/processDefinition/processInstanceTable.js

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,36 @@ module.exports = [
5656
$scope.onSearchChange = updateView;
5757
$scope.onSortChange = updateView;
5858

59-
// prettier-ignore
6059
$scope.headColumns = [
61-
{ class: 'state', request: 'state', sortable: false, content: $translate.instant('PLUGIN_PROCESS_INSTANCE_STATE')},
62-
{ class: 'instance-id', request: 'instanceId', sortable: false, content: $translate.instant('PLUGIN_PROCESS_INSTANCE_ID')},
63-
{ class: 'start-time', request: 'startTime', sortable: true, content: $translate.instant('PLUGIN_PROCESS_INSTANCE_START_TIME')},
64-
{ class: 'business-key', request: 'businessKey', sortable: false, content: $translate.instant('PLUGIN_PROCESS_INSTANCE_BUSINESS_KEY')}
65-
];
60+
{
61+
class: 'state',
62+
request: 'state',
63+
sortable: false,
64+
content: $translate.instant('PLUGIN_PROCESS_INSTANCE_STATE')
65+
},
66+
{
67+
class: 'instance-id',
68+
request: 'instanceId',
69+
sortable: false,
70+
content: $translate.instant('PLUGIN_PROCESS_INSTANCE_ID')
71+
},
72+
{
73+
class: 'start-time',
74+
request: 'startTime',
75+
sortable: true,
76+
content: $translate.instant(
77+
'PLUGIN_PROCESS_INSTANCE_START_TIME'
78+
)
79+
},
80+
{
81+
class: 'business-key',
82+
request: 'businessKey',
83+
sortable: false,
84+
content: $translate.instant(
85+
'PLUGIN_PROCESS_INSTANCE_BUSINESS_KEY'
86+
)
87+
}
88+
];
6689

6790
// Default sorting
6891
var defaultValue = {sortBy: 'startTime', sortOrder: 'desc'};

0 commit comments

Comments
 (0)