1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-25 09:21:11 +02:00

[#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

View File

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