Skip to content
Snippets Groups Projects
Commit 52d244c5 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

Merge branch 'f-webui-212' into 'dev'

Fix for webui#212

See merge request !101
parents 26e60c91 f04d49ff
No related branches found
No related tags found
2 merge requests!103Quick main-release of documentation,!101Fix for webui#212
Pipeline #35844 passed
......@@ -33,6 +33,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
* [#212](https://gitlab.com/caosdb/caosdb-webui/-/issues/212) - Searching for
double values in scientific notation fails
* [#199](https://gitlab.com/caosdb/caosdb-webui/-/issues/199) - Linkify creates
additional links after showing previews of referenced entities
......
......@@ -124,7 +124,7 @@ var queryForm = (function () {
pagingparam = "P=" + paging + "&";
}
location.href =
connection.getBasePath() + "Entity/?" + pagingparam + "query=" + query;
connection.getBasePath() + "Entity/?" + pagingparam + "query=" + encodeURIComponent(query);
};
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment