Skip to content

Commit

Permalink
🔧 Set default price to 128 (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Aug 3, 2023
1 parent 6d644e5 commit 50c10d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/NFTMint/WriterMessage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
>
<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 === 0">
<option v-for="{ batch, price } in initialBatchOptions" :key="batch" :value="batch" :selected="batch === 4">
{{ price }}
</option>
</select>
Expand Down Expand Up @@ -173,7 +173,7 @@ export default class WriterMessage extends Vue {
userInfo: any = undefined
avatar: string = ''
displayName: string = this.address
shouldShowSettings = false
shouldShowSettings = true
shouldShowAdvancedSettings = false
initialBatchOptions = [
{ batch: -1, price: this.$t('NFTPortal.label.initialBatch.free') },
Expand Down

0 comments on commit 50c10d2

Please sign in to comment.