diff --git a/.changelog/11896.txt b/.changelog/11896.txt new file mode 100644 index 000000000..783bc1431 --- /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 7cf44fd97..e033567c7 100644 --- a/ui/app/templates/allocations/allocation/task/index.hbs +++ b/ui/app/templates/allocations/allocation/task/index.hbs @@ -108,18 +108,18 @@ - - {{#if row.model.isCSI}} - - {{row.model.volume}} - - {{else}} - {{row.model.volume}} - {{/if}} - + {{row.model.volume}} {{row.model.destination}} {{if row.model.readOnly "Read" "Read/Write"}} - {{row.model.source}} + + {{#if row.model.isCSI}} + + {{row.model.source}} + + {{else}} + {{row.model.source}} + {{/if}} +