Skip to content

Commit

Permalink
🚸 Add visual hint to required fields
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Aug 15, 2024
1 parent beaa1de commit bcc2ec0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/mint-nft/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -266,11 +266,11 @@
</h3>
</template>
<UForm :validate="validate" :state="state">
<UFormGroup label="NFT ID Prefix:" name="prefix">
<UFormGroup label="NFT ID Prefix:" name="prefix" required>
<UInput v-model="state.nftIdPrefix" placeholder="English only ex.MoneyVerse" />
</UFormGroup>

<UFormGroup label="Number of NFT to mint:">
<UFormGroup label="Number of NFT to mint:" required>
<UInput
v-model="nftMintCount"
placeholder="0-100"
Expand All @@ -280,7 +280,7 @@
/>
</UFormGroup>

<UFormGroup label="Image URL:">
<UFormGroup label="Image URL:" required>
<UInput v-model="imageUrl" placeholder="ipfs:// ... or ar://...." />
</UFormGroup>

Expand Down

0 comments on commit bcc2ec0

Please sign in to comment.