Skip to content

Commit

Permalink
Merge pull request #2423 from nextcloud/renovate/stable30-cypress
Browse files Browse the repository at this point in the history
  • Loading branch information
skjnldsv authored Aug 22, 2024
2 parents dcb37f7 + 55cb15a commit 6fe1da8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions js/viewer-main.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -121704,7 +121704,7 @@ const _sfc_main$2 = {
*/
async getBase64FromImage() {
const file = await cancelableClient.get(this.src);
return `data:${this.mime};base64,${btoa(file.data)}`;
return `data:${this.mime};base64,${btoa(unescape(encodeURIComponent(file.data)))}`;
},
/**
* Handle zooming
Expand Down Expand Up @@ -121861,7 +121861,7 @@ var __component__$2 = /* @__PURE__ */ normalizeComponent$1(
_sfc_staticRenderFns$2,
false,
null,
"256fed76"
"3401a1bc"
);
const Images$1 = __component__$2.exports;
/**
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@
"@nextcloud/vite-config": "^1.4.0",
"@types/dockerode": "^3.3.29",
"@vue/tsconfig": "^0.5.1",
"cypress": "^13.7.1",
"cypress-split": "^1.21.0",
"cypress": "^13.13.3",
"cypress-split": "^1.24.0",
"cypress-visual-regression": "^5.1.0",
"dockerode": "^4.0.2",
"eslint-plugin-cypress": "^3.4.0",
"eslint-plugin-cypress": "^3.5.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
Expand Down

0 comments on commit 6fe1da8

Please sign in to comment.