Skip to content

Commit

Permalink
fix instant-links
Browse files Browse the repository at this point in the history
  • Loading branch information
amazy committed Sep 23, 2024
1 parent bd6bea4 commit 660308f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WebApplication/src/components/StudyItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export default {
<td v-if="hasPrimaryViewerIcon" class="td-viewer-icon">
<TokenLinkButton v-if="primaryViewerUrl"
level="study" :linkUrl="primaryViewerUrl"
:resourcesOrthancId="study.ID" linkType="icon"
:resourcesOrthancId="[study.ID]" linkType="icon"
iconClass="bi bi-eye-fill"
:tokenType="'viewer-instant-link'" :opensInNewTab="true">
</TokenLinkButton>
Expand All @@ -188,7 +188,7 @@ export default {
<td v-if="hasPdfReportIcon" class="td-pdf-icon">
<TokenLinkButton v-for="pdfReportUrl in pdfReportsUrl" :key="pdfReportUrl"
level="study" :linkUrl="pdfReportUrl"
:resourcesOrthancId="study.ID" linkType="icon"
:resourcesOrthancId="[study.ID]" linkType="icon"
iconClass="bi bi-file-earmark-text"
:tokenType="'download-instant-link'" :opensInNewTab="true">
</TokenLinkButton>
Expand Down

0 comments on commit 660308f

Please sign in to comment.