mirror of
https://github.com/web3privacy/explorer-app.git
synced 2024-10-15 16:46:26 +02:00
fix: type errors
This commit is contained in:
parent
74d8154843
commit
43cb8f5117
2 changed files with 3 additions and 3 deletions
|
@ -81,7 +81,7 @@ defineExpose({
|
||||||
<ProjectCreateComponentsSelectChips
|
<ProjectCreateComponentsSelectChips
|
||||||
v-model="signRequirements"
|
v-model="signRequirements"
|
||||||
label="Sign-in requirements"
|
label="Sign-in requirements"
|
||||||
:options="signInRequirmentsData.map(s => ({ label: s.name, value: s.id }))"
|
:options="signInRequirmentsData?.map(s => ({ label: s.name, value: s.id }))"
|
||||||
placeholder="Add requirement"
|
placeholder="Add requirement"
|
||||||
hint="What do you need to provide to use your project?"
|
hint="What do you need to provide to use your project?"
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -47,7 +47,7 @@ defineExpose({
|
||||||
/>
|
/>
|
||||||
<ProjectCreateComponentsRadio
|
<ProjectCreateComponentsRadio
|
||||||
v-model="version"
|
v-model="version"
|
||||||
:options="projectPhaseData.map(p => ({ label: p.name, value: p.id }))"
|
:options="projectPhaseData?.map(p => ({ label: p.name, value: p.id }))"
|
||||||
/>
|
/>
|
||||||
<ProjectCreateComponentsCategoryDivider
|
<ProjectCreateComponentsCategoryDivider
|
||||||
w-full
|
w-full
|
||||||
|
@ -71,7 +71,7 @@ defineExpose({
|
||||||
</div>
|
</div>
|
||||||
<ProjectCreateComponentsSelect
|
<ProjectCreateComponentsSelect
|
||||||
v-model="assetType"
|
v-model="assetType"
|
||||||
:options="assetCustodyData.map(c => ({ label: c.name, value: c.id }))"
|
:options="assetCustodyData?.map(c => ({ label: c.name, value: c.id }))"
|
||||||
label="Asset custody type"
|
label="Asset custody type"
|
||||||
placeholder="Select custody type"
|
placeholder="Select custody type"
|
||||||
hint="How are user’s fund handled? (non-custody, multisig, pool,...)"
|
hint="How are user’s fund handled? (non-custody, multisig, pool,...)"
|
||||||
|
|
Loading…
Reference in a new issue