Skip to content

Commit

Permalink
fix next run dataset modal links
Browse files Browse the repository at this point in the history
  • Loading branch information
bbovenzi committed Oct 6, 2022
1 parent 8b928b4 commit 3eaca2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/static/js/datasetUtils.js
Original file line number Diff line number Diff line change
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 3eaca2e

Please sign in to comment.