Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#EXUI-1227: Inside the case file view, when click on the uploaded mp3 and mp4 files, its not opening the file #1797

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## RELEASE NOTES

### Version 7.1.29
**EXUI-1227** Issue in CaseFileView

### Version 7.1.28
**EXUI-2698** User is able to upload restricted file type to Civil case

### Version 7.1.27
**EXUI-2672** Incorrect Timestamp in CaseFileView

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.1.28",
"version": "7.1.29",
"engines": {
"node": ">=18.19.0"
},
Expand Down
2 changes: 1 addition & 1 deletion projects/ccd-case-ui-toolkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hmcts/ccd-case-ui-toolkit",
"version": "7.1.28",
"version": "7.1.29",
"engines": {
"node": ">=18.19.0"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<ng-container *ngIf="errorMessages?.length">
<div
id="case-file-view-field-errors"
class="govuk-error-summary govuk-!-margin-bottom-4" data-module="govuk-error-summary">
class="govuk-error-summary govuk-!-margin-bottom-4"
data-module="govuk-error-summary"
>
<div role="alert">
<h2 class="govuk-error-summary__title">
There is a problem
</h2>
<h2 class="govuk-error-summary__title">There is a problem</h2>
<div class="govuk-error-summary__body">
<ul class="govuk-list govuk-error-summary__list">
<li *ngFor="let errorMessage of errorMessages">
Expand All @@ -17,7 +17,10 @@ <h2 class="govuk-error-summary__title">
</div>
</ng-container>

<div *ngIf="getCategoriesAndDocumentsError" class="govuk-grid-column-two-thirds">
<div
*ngIf="getCategoriesAndDocumentsError"
class="govuk-grid-column-two-thirds"
>
<h1 class="govuk-heading-xl">Sorry, there is a problem with the service</h1>
<p class="govuk-body">Try again later.</p>
</div>
Expand All @@ -39,15 +42,18 @@ <h2 class="govuk-heading-l">Case file</h2>
<!-- Media viewer -->
<div class="media-viewer-container">
<ng-container *ngIf="currentDocument">
<mv-media-viewer [url]="currentDocument.document_binary_url"
[downloadFileName]="currentDocument.document_filename"
[showToolbar]="true"
[contentType]="currentDocument.content_type"
[enableAnnotations]="true"
[enableRedactions]="true"
[height]="'94.5vh'"
[caseId]="caseId"
[enableICP]="isIcpEnabled()">
<mv-media-viewer
[url]="currentDocument.document_binary_url"
[downloadFileName]="currentDocument.document_filename"
[showToolbar]="true"
[contentType]="currentDocument.content_type"
[enableAnnotations]="true"
[enableRedactions]="true"
[height]="'94.5vh'"
[caseId]="caseId"
[multimediaPlayerEnabled]="true"
[enableICP]="isIcpEnabled()"
>
</mv-media-viewer>
</ng-container>
</div>
Expand Down
Loading