Skip to content

Commit

Permalink
Add ZIP file support to attachment component
Browse files Browse the repository at this point in the history
  • Loading branch information
AshGDS committed Dec 6, 2023
1 parent 268f3ef commit 0f4c1fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
## Unreleased

* Standardise search term formatting across GA4 trackers ([PR #3746](https://github.com/alphagov/govuk_publishing_components/pull/3746))
* Add ZIP file support to attachment component ([PR #3751](https://github.com/alphagov/govuk_publishing_components/pull/3751))

## 36.0.2

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ class SupportedContentType
{ content_type: "application/vnd.openxmlformats-officedocument.presentationml.presentation", name: "MS PowerPoint Presentation" }.freeze, # pptx
{ content_type: "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", name: "MS Excel Spreadsheet", spreadsheet: true }.freeze, # xlsx
{ content_type: "application/vnd.openxmlformats-officedocument.wordprocessingml.document", name: "MS Word Document", document: true }.freeze, # docx
{ content_type: "application/zip", abbr: "ZIP", name: "Zip archive" }.freeze,
{ content_type: "application/xml", abbr: "XML", name: "XML Document" }.freeze,
{ content_type: "image/gif", abbr: "GIF", name: "Graphics Interchange Format" }.freeze,
{ content_type: "image/jpeg", name: "JPEG" }.freeze,
Expand Down

0 comments on commit 0f4c1fc

Please sign in to comment.