Skip to content

Commit

Permalink
fix next run dataset modal links (#26897)
Browse files Browse the repository at this point in the history
(cherry picked from commit 8898db9)
  • Loading branch information
bbovenzi authored and ephraimbuddy committed Oct 18, 2022
1 parent d760ee6 commit b9e09af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/static/js/datasetUtils.js
Expand Up @@ -33,7 +33,7 @@ export function openDatasetModal(dagId, summary = '', nextDatasets = [], error =

const uriCell = document.createElement('td');
const datasetLink = document.createElement('a');
datasetLink.href = `${datasetsUrl}?dataset_uri=${encodeURIComponent(d.id)}`;
datasetLink.href = `${datasetsUrl}?uri=${encodeURIComponent(d.uri)}`;
datasetLink.innerText = d.uri;
uriCell.append(datasetLink);

Expand Down

0 comments on commit b9e09af

Please sign in to comment.