diff --git a/.changelog/11896.txt b/.changelog/11896.txt new file mode 100644 index 000000000000..783bc1431784 --- /dev/null +++ b/.changelog/11896.txt @@ -0,0 +1,3 @@ +```release-note:bug +ui: Fix the link target for CSI volumes on the task detail page +``` diff --git a/ui/app/templates/allocations/allocation/task/index.hbs b/ui/app/templates/allocations/allocation/task/index.hbs index 7cf44fd97bf2..e033567c7b81 100644 --- a/ui/app/templates/allocations/allocation/task/index.hbs +++ b/ui/app/templates/allocations/allocation/task/index.hbs @@ -108,18 +108,18 @@ - + {{row.model.volume}} + {{row.model.destination}} + {{if row.model.readOnly "Read" "Read/Write"}} + {{#if row.model.isCSI}} - - {{row.model.volume}} + + {{row.model.source}} {{else}} - {{row.model.volume}} + {{row.model.source}} {{/if}} - {{row.model.destination}} - {{if row.model.readOnly "Read" "Read/Write"}} - {{row.model.source}}