From 0ba963a5d7695edc4f2d95cb168356824d833fda Mon Sep 17 00:00:00 2001 From: Simon Loir Date: Sat, 10 Jun 2023 22:30:32 +0200 Subject: [PATCH] [#2681] fixed collection index column sort normalization --- ui/src/utils/CommonHelper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/utils/CommonHelper.js b/ui/src/utils/CommonHelper.js index fbc9377e..420b5b2b 100644 --- a/ui/src/utils/CommonHelper.js +++ b/ui/src/utils/CommonHelper.js @@ -1698,7 +1698,7 @@ export default class CommonHelper { } if (col.sort) { - item += (" " + c.sort.toUpperCase()); + item += (" " + col.sort.toUpperCase()); } return item;