[#2681] fixed collection index column sort normalization

This commit is contained in:
Simon Loir 2023-06-10 22:30:32 +02:00 committed by GitHub
parent 87a6f1bebb
commit 0ba963a5d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1698,7 +1698,7 @@ export default class CommonHelper {
} }
if (col.sort) { if (col.sort) {
item += (" " + c.sort.toUpperCase()); item += (" " + col.sort.toUpperCase());
} }
return item; return item;