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