Skip to content

Commit 6f18205

Browse files
committed
Merge branch 'dev' of github.com:ISA-tools/ptox-metadata-manager-client into dev
2 parents 8b95216 + f72eb59 commit 6f18205

File tree

4 files changed

+8
-31
lines changed

4 files changed

+8
-31
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ $ npm run start
1616
# generate static project
1717
$ npm run generate
1818
```
19+
**IMPORTANT**
20+
1. Use node 20.10.8 LTS as relying on higher version will trigger an error (`[DEP0040] The punycode module is deprecated"`)
21+
2. If, during startup, you are getting the following error message `"error:0308010C:digital envelope routines::unsupported"`,
22+
Tell node to use the legacy OpenSSL provider issueing the following command:
23+
24+
`export NODE_OPTIONS=--openssl-legacy-provider`
1925

2026
For detailed explanation on how things work, check out the [documentation](https://nuxtjs.org).
2127

package-lock.json

-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/files/overlays/PublishOverlay.vue

+1
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ export default {
7575
...mapActions("files", ["publishFile"]),
7676
async submit() {
7777
await this.publishFile({token: this.token, at: this.receiveDate })
78+
this.hidePublishOverlay();
7879
}
7980
}
8081
}

src/pages/files/index.vue

+1
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@
118118
</div>
119119
</v-list-item>
120120
<v-list-item
121+
v-if="!item.received"
121122
link
122123
>
123124
<div

0 commit comments

Comments
 (0)