branch develop updated (7d8ffa82 -> f4abc306)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git from 7d8ffa82 :bug: fixes #11138 : Normalisation du maxTrawlDepth new f4abc306 :bug: fixes #11190 : Problème de tri sur la colonne id : Force le "ID" en "id" pour permettre le tri (sinon hibernate ne retrouve pas ses petits). The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit f4abc306c00e4fe936f0f4f68fad1d1ef0811547 Author: jcouteau <couteau@codelutin.com> Date: Tue Feb 23 10:53:41 2021 +0100 :bug: fixes #11190 : Problème de tri sur la colonne id : Force le "ID" en "id" pour permettre le tri (sinon hibernate ne retrouve pas ses petits). Summary of changes: .../java/fr/ifremer/echobase/ui/actions/AbstractJSONPaginedAction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit f4abc306c00e4fe936f0f4f68fad1d1ef0811547 Author: jcouteau <couteau@codelutin.com> Date: Tue Feb 23 10:53:41 2021 +0100 :bug: fixes #11190 : Problème de tri sur la colonne id : Force le "ID" en "id" pour permettre le tri (sinon hibernate ne retrouve pas ses petits). --- .../java/fr/ifremer/echobase/ui/actions/AbstractJSONPaginedAction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/echobase-ui/src/main/java/fr/ifremer/echobase/ui/actions/AbstractJSONPaginedAction.java b/echobase-ui/src/main/java/fr/ifremer/echobase/ui/actions/AbstractJSONPaginedAction.java index 57edd0a8..17cfb677 100644 --- a/echobase-ui/src/main/java/fr/ifremer/echobase/ui/actions/AbstractJSONPaginedAction.java +++ b/echobase-ui/src/main/java/fr/ifremer/echobase/ui/actions/AbstractJSONPaginedAction.java @@ -119,7 +119,7 @@ public abstract class AbstractJSONPaginedAction extends EchoBaseActionSupport { protected String getSortColumn() { String result = null; if (useSort()) { - result = sidx; + result = sidx.equals("ID")?"id":sidx; } return result; } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm