Skip to content

Commit

Permalink
Fxing key frontend issue, change PEM
Browse files Browse the repository at this point in the history
  • Loading branch information
iietmoon committed Mar 24, 2022
1 parent 5703bc2 commit c965666
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ export default {
},

proxy: {
//"/api/": "https://wallet.waltid.org"
"/api/": "http://localhost:8080"
"/api/": "https://wallet.waltid.org"
//"/api/": "http://localhost:8080"
},
auth: {
strategies: {
Expand Down
7 changes: 5 additions & 2 deletions pages/Settings/Ecosystems/key.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,11 @@
<p><strong>Successfully created</strong></p>
<p>{{this.didHost}}</p>
<textarea name="did-content" id="" cols="30" rows="5" class="mt-2 _did-content" :data="this.didContent" v-model="this.didContent"></textarea>
<p v-if="coppied" class="text-secondary _bounce" style="font-size: 13px">Copied successfully</p>
<button type="button" @click="onCopy" class="_bounce btn _btn-copy text-white mt-2" ><i class="bi bi-files me-2"></i>Copy DID</button>
<br>
<p v-if="coppied" class="text-secondary _bounce mt-2" style="font-size: 13px">Copied successfully</p>
<br>
<a hre="#copy" @click="onCopy" class="_bounce btn _btn-copy text-white mt-2" ><i class="bi bi-files me-2"></i>Copy DID</a>
<br>
<a href="/" class="_bounce btn _btn-blue text-white mt-2">Done</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion pages/Settings/data/key/Import.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<div :class="this.wizardIndex === 0 ? '': 'animate__fadeOutRight hide'">
<form id="key-import-form" @submit.prevent="keyImport">
<div class="_item">
<p>Import a key in PME or JWK format.</p>
<p>Import a key in PEM or JWK format.</p>
<p class="text-primary">Asymmetric key</p>
<textarea :class="this.error ? '_asymmetric-key mt-3 border-danger' : '_asymmetric-key mt-3'" :data="this.asymmetrickey" v-model="asymmetrickey"></textarea>
</div>
Expand Down

0 comments on commit c965666

Please sign in to comment.