satis 2.1.55 → 2.1.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/components/satis/signature/component_controller.js +1 -1
- data/lib/satis/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 684c749b28e6dc46822dddec9f3fd51b8be43ebe8b9664e082756c0a39a0e7b7
|
|
4
|
+
data.tar.gz: 31dabf84980bc8596ce6ecd5426a10412df686fd8e50a7f0c351b0e784539472
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6464a24ce104b960cd469fb81eaa4ae848b42f7b4f39417569a50150714bbdd71fd6bd531d2feb01afb991ce0860980db082915c11deb6ae9b93906362752293
|
|
7
|
+
data.tar.gz: 965894517e1e1454aa5cfb1f2354ecdf94aa8c8c310902746413856aacd2a4e9888694a15badc58a825a609d374b7742cef0af97afca24268cb6602db807b981
|
|
@@ -9,7 +9,7 @@ export default class SignatureComponentController extends ApplicationController
|
|
|
9
9
|
async connect() {
|
|
10
10
|
this.signaturePad = new SignaturePad(this.canvasTarget)
|
|
11
11
|
if (this.hasUrlValue) {
|
|
12
|
-
let blob = await fetch(this.urlValue)
|
|
12
|
+
let blob = await fetch(this.urlValue, { cache: "no-store" })
|
|
13
13
|
.then(r => r.blob())
|
|
14
14
|
|
|
15
15
|
let dataUrl = await new Promise(resolve => {
|
data/lib/satis/version.rb
CHANGED