Merge branch 'release_22.01' into release_22.05

This commit is contained in:
mvdbeek
2023-08-31 12:57:56 +02:00
2 changed files with 2 additions and 4 deletions
@@ -261,7 +261,7 @@ window.bundleEntries.jqplot_box = function (options) {
chart : options.chart,
dataset_id : dataset.id,
dataset_groups : dataset_groups,
targets : options.targets,
target : options.target,
makeConfig : function( groups, plot_config ){
var boundary = getDomains( groups, 'x' );
$.extend( true, plot_config, {
+1 -3
View File
@@ -207,9 +207,7 @@ class GalaxyASGIRequest(GalaxyAbstractRequest):
@property
def host(self) -> str:
client = self.__request.client
assert client is not None
return str(client.host)
return self.__request.base_url.netloc
class GalaxyASGIResponse(GalaxyAbstractResponse):