|
@ -135,7 +135,7 @@ |
|
|
</label> |
|
|
</label> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<div class="mt-4 flex"> |
|
|
<div v-if="showGeneralAdvanced" class="mt-4 flex"> |
|
|
<router-link |
|
|
<router-link |
|
|
:to="{ |
|
|
:to="{ |
|
|
name: 'claim-add-raw', |
|
|
name: 'claim-add-raw', |
|
@ -221,6 +221,7 @@ export default class OfferDetailsView extends Vue { |
|
|
projectName = "a project"; |
|
|
projectName = "a project"; |
|
|
recipientDid = ""; |
|
|
recipientDid = ""; |
|
|
recipientName = ""; |
|
|
recipientName = ""; |
|
|
|
|
|
showGeneralAdvanced = false; |
|
|
unitCode = "HUR"; |
|
|
unitCode = "HUR"; |
|
|
validThroughDateInput = ""; |
|
|
validThroughDateInput = ""; |
|
|
|
|
|
|
|
@ -296,8 +297,9 @@ export default class OfferDetailsView extends Vue { |
|
|
|
|
|
|
|
|
try { |
|
|
try { |
|
|
const settings = await retrieveSettingsForActiveAccount(); |
|
|
const settings = await retrieveSettingsForActiveAccount(); |
|
|
this.apiServer = settings.apiServer || ""; |
|
|
this.apiServer = settings.apiServer ?? ""; |
|
|
this.activeDid = settings.activeDid || ""; |
|
|
this.activeDid = settings.activeDid ?? ""; |
|
|
|
|
|
this.showGeneralAdvanced = settings.showGeneralAdvanced ?? false; |
|
|
|
|
|
|
|
|
let allContacts: Contact[] = []; |
|
|
let allContacts: Contact[] = []; |
|
|
let allMyDids: string[] = []; |
|
|
let allMyDids: string[] = []; |
|
|