Skip to content
Snippets Groups Projects
Verified Commit f04d49ff authored by Timm Fitschen's avatar Timm Fitschen
Browse files

BUG: fix for webui#212

parent 26e60c91
Branches
Tags
2 merge requests!103Quick main-release of documentation,!101Fix for webui#212
Pipeline #35586 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