Skip to content

Commit

Permalink
🎨 Change initial price to USD
Browse files Browse the repository at this point in the history
  • Loading branch information
AuroraHuang22 committed Sep 19, 2023
1 parent 4d27282 commit 27adcd6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions components/NFTMint/WriterMessage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@
>
<span>{{ $t('NFTPortal.label.initialBatch.input') }}</span>
<select ref="batchInput" @change="(e) => $emit('update-initial-batch', e.target.value)">
<option v-for="{ batch, price } in initialBatchOptions" :key="batch" :value="batch" :selected="batch === 4">
{{ price }}
<option v-for="{ batch, price } in initialBatchOptions" :key="batch" :value="batch" :selected="batch === 0">
${{ price }}
</option>
</select>
</div>
Expand All @@ -156,7 +156,7 @@
{{ $t('NFTPortal.label.collectExpiryDate.input') }}
</label>
<input v-if=shouldShowCollectExpiryDateInput ref="collectExpiryDateInput" type="date" :min="tomorrow" @change="updateCollectExpiryDate($event)" />
</div>
</div>
</div>
</template>
</div>
Expand Down Expand Up @@ -192,10 +192,10 @@ export default class WriterMessage extends Vue {
initialBatchOptions = [
{ batch: -1, price: this.$t('NFTPortal.label.initialBatch.free') },
{ batch: 0, price: 8 },
{ batch: 4, price: 128 },
{ batch: 7, price: 1024 },
{ batch: 9, price: 4096 },
{ batch: 0, price: 1 },
{ batch: 4, price: 8 },
{ batch: 7, price: 64 },
{ batch: 9, price: 256 },
]
get shouldShowInitialBatchSettings() {
Expand Down
2 changes: 1 addition & 1 deletion locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@
"NFTPortal.label.defaultDescription": "(no description)",
"NFTPortal.label.detailsPage": "NFT Details Page :",
"NFTPortal.label.fileUpload": "Has a file? Upload to ISCN here",
"NFTPortal.label.initialBatch.input": "Initial Price (LIKE)",
"NFTPortal.label.initialBatch.input": "Initial Price (USD)",
"NFTPortal.label.initialBatch.free": "All Free",
"NFTPortal.label.input.email": "Join our community and stay in the loop on exclusive product updates and offers. {link} now!",
"NFTPortal.label.input.link": "Please leave your email",
Expand Down

0 comments on commit 27adcd6

Please sign in to comment.