diff --git a/ui/package.json b/ui/package.json index 1c05b9c330..5762949cea 100644 --- a/ui/package.json +++ b/ui/package.json @@ -86,6 +86,7 @@ "fuse.js": "^6.6.2", "jsencrypt": "^3.3.2", "lodash-es": "^4.17.21", + "object-hash": "^3.0.0", "overlayscrollbars": "^2.5.0", "overlayscrollbars-vue": "^0.5.7", "path-browserify": "^1.0.1", @@ -114,6 +115,7 @@ "@types/jsdom": "^20.0.1", "@types/lodash-es": "^4.17.12", "@types/node": "^18.11.19", + "@types/object-hash": "^3.0.6", "@types/qs": "^6.9.7", "@types/randomstring": "^1.1.8", "@types/ua-parser-js": "^0.7.39", diff --git a/ui/pnpm-lock.yaml b/ui/pnpm-lock.yaml index d29a8a5973..13b265077b 100644 --- a/ui/pnpm-lock.yaml +++ b/ui/pnpm-lock.yaml @@ -158,6 +158,9 @@ importers: lodash-es: specifier: ^4.17.21 version: 4.17.21 + object-hash: + specifier: ^3.0.0 + version: 3.0.0 overlayscrollbars: specifier: ^2.5.0 version: 2.5.0 @@ -237,6 +240,9 @@ importers: '@types/node': specifier: ^18.11.19 version: 18.13.0 + '@types/object-hash': + specifier: ^3.0.6 + version: 3.0.6 '@types/qs': specifier: ^6.9.7 version: 6.9.7 @@ -4315,6 +4321,9 @@ packages: '@types/normalize-package-data@2.4.1': resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} + '@types/object-hash@3.0.6': + resolution: {integrity: sha512-fOBV8C1FIu2ELinoILQ+ApxcUKz4ngq+IWUYrxSGjXzzjUALijilampwkMgEtJ+h2njAW3pi853QpzNVCHB73w==} + '@types/pretty-hrtime@1.0.3': resolution: {integrity: sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA==} @@ -6280,6 +6289,7 @@ packages: eslint@8.43.0: resolution: {integrity: sha512-aaCpf2JqqKesMFGgmRPessmVKjcGXqdlAYLLC3THM8t5nBRZRQ+st5WM/hoJXkdioEXLLbXgclUpM0TXo5HX5Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. hasBin: true espree@9.5.2: @@ -15309,6 +15319,8 @@ snapshots: '@types/normalize-package-data@2.4.1': {} + '@types/object-hash@3.0.6': {} + '@types/pretty-hrtime@1.0.3': {} '@types/prop-types@15.7.11': {} diff --git a/ui/src/components/upload/UppyUpload.vue b/ui/src/components/upload/UppyUpload.vue index cf97738beb..b69341d506 100644 --- a/ui/src/components/upload/UppyUpload.vue +++ b/ui/src/components/upload/UppyUpload.vue @@ -1,6 +1,7 @@