mirror of
https://github.com/apache/superset.git
synced 2026-04-20 08:34:37 +00:00
fix(superset-frontend): Fixes for broken functionality when an application root is defined (#36058)
This commit is contained in:
@@ -288,9 +288,16 @@ const ResultSet = ({
|
||||
|
||||
all_columns: results.columns.map(column => column.column_name),
|
||||
});
|
||||
const url = mountExploreUrl(null, {
|
||||
[URL_PARAMS.formDataKey.name]: key,
|
||||
});
|
||||
const force = false;
|
||||
const includeAppRoot = openInNewWindow;
|
||||
const url = mountExploreUrl(
|
||||
null,
|
||||
{
|
||||
[URL_PARAMS.formDataKey.name]: key,
|
||||
},
|
||||
force,
|
||||
includeAppRoot,
|
||||
);
|
||||
if (openInNewWindow) {
|
||||
window.open(url, '_blank', 'noreferrer');
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user