Skip to content

Commit fb432be

Browse files
committed
small fix about ordering static resources table #554
1 parent 5e5b4f7 commit fb432be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

force-app/main/default/lwc/orgcheckApp/orgcheckApp.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ export default class OrgcheckApp extends LightningElement {
11281128
{ label: 'Description', type: ocui.ColumnType.TXT, data: { value: 'description' }, modifier: { maximumLength: 45, valueIfEmpty: 'No description.' }},
11291129
],
11301130
orderIndex: 1,
1131-
orderSort: ocui.SortOrder.ASC
1131+
orderSort: ocui.SortOrder.DESC
11321132
};
11331133

11341134
/**
@@ -1156,7 +1156,7 @@ export default class OrgcheckApp extends LightningElement {
11561156
{ label: 'Description', type: ocui.ColumnType.TXT, data: { value: 'description' }, modifier: { maximumLength: 45, valueIfEmpty: 'No description.' }},
11571157
],
11581158
orderIndex: 1,
1159-
orderSort: ocui.SortOrder.ASC
1159+
orderSort: ocui.SortOrder.DESC
11601160
};
11611161

11621162
/**
@@ -1178,7 +1178,7 @@ export default class OrgcheckApp extends LightningElement {
11781178
{ label: 'Description', type: ocui.ColumnType.TXT, data: { value: 'description' }, modifier: { maximumLength: 45, valueIfEmpty: 'No description.' }},
11791179
],
11801180
orderIndex: 1,
1181-
orderSort: ocui.SortOrder.ASC
1181+
orderSort: ocui.SortOrder.DESC
11821182
};
11831183

11841184
/**

0 commit comments

Comments
 (0)