From 61c3dee41ae6378da37acb9a79dcce76ba97c797 Mon Sep 17 00:00:00 2001 From: Yves Noirjean <yves.noirjean@id.ethz.ch> Date: Fri, 31 Aug 2018 14:23:35 +0200 Subject: [PATCH] ELN bugfix - not ignoring some fetch options when loading data sets --- .../1/as/webapps/eln-lims/html/js/server/ServerFacade.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js index 7d391954cc0..14a7517701c 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/server/ServerFacade.js @@ -906,7 +906,9 @@ function ServerFacade(openbisServer) { //Optional fetchOptions - if(!advancedFetchOptions) { + if(!advancedFetchOptions || + (advancedFetchOptions && !advancedFetchOptions.withType) || + (advancedFetchOptions && !advancedFetchOptions.only)) { if(fetchOptions.withType) { fetchOptions.withType(); } -- GitLab