Skip to content

Commit

Permalink
Revert "#24 attempt to get rid of full screen download dialog bump 0.…
Browse files Browse the repository at this point in the history
…24.0" didn't work

This reverts commit a2ac504.
  • Loading branch information
rcmenno committed Nov 25, 2024
1 parent a2ac504 commit 804189e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PWA/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ReliefBox",
"version": "0.24.0",
"version": "0.23.0",
"description": "A tool for managing the distribution of relief items during humanitarian emergencies.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion PWA/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<!-- <a class="navbar-item">-->
<img src="images/ReliefBox-horizontal-nobackground.png" width="220" height="30">
<!-- </a>-->
<div class="navbar-item">0.24.0</div>
<div class="navbar-item">0.23.0</div>
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
Expand Down
2 changes: 1 addition & 1 deletion PWA/src/Services/FetchEventHandlers/DownloadDataHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class DownloadDataHandler extends ActiveSessionContainer implements Fetch
const beneficiaryStatusService = new BeneficiaryStatusService(this.activeSession)
return new Response(await SpreadSheetService.fileFromJson(await beneficiaryStatusService.generateBeneficiariyStatusses()), {
headers: {
'Content-Type': 'application/force-download',
'Content-Type': 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
'Content-Disposition': 'attachment; filename="data_processed.xlsx"'
}
});
Expand Down

0 comments on commit 804189e

Please sign in to comment.