Skip to content

Commit

Permalink
Set to 15 chars (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
turulomio authored Sep 11, 2024
1 parent 5d4f99a commit 060f324
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/InvestmentsoperationsCU.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<v-autocomplete :readonly="mode=='D'" :items="getOperationstypesForInvestmentsOperations()" v-model="new_io.operationstypes" :label="$t('Select an operation type')" item-title="name" item-value="url" :rules="RulesSelection(true)"></v-autocomplete>
</div>
<div class="d-flex flex-row">
<v-text-field data-test="InvestmentsoperationsCU_Shares" class="mr-5" :readonly="mode=='D'" v-model.number="new_io.shares" :label="$t('Set investment operation shares')" :placeholder="$t('Set investment operation shares')" :rules="RulesFloat(12,true,6)" counter="12"/>
<v-text-field data-test="InvestmentsoperationsCU_Price" :readonly="mode=='D'" v-model.number="new_io.price" :label="$t('Set investment operation price')" :placeholder="$t('Set investment operation price')" :rules="RulesFloatGEZ(12,true,product.decimals)" counter="12"/>
<v-text-field data-test="InvestmentsoperationsCU_Shares" class="mr-5" :readonly="mode=='D'" v-model.number="new_io.shares" :label="$t('Set investment operation shares')" :placeholder="$t('Set investment operation shares')" :rules="RulesFloat(15,true,6)" counter="15"/>
<v-text-field data-test="InvestmentsoperationsCU_Price" :readonly="mode=='D'" v-model.number="new_io.price" :label="$t('Set investment operation price')" :placeholder="$t('Set investment operation price')" :rules="RulesFloatGEZ(15,true,product.decimals)" counter="15"/>
</div>
<div class="d-flex flex-row">
<v-text-field class="mr-5" :readonly="mode=='D'" v-model.number="new_io.taxes" :label="$t('Set investment operation taxes')" :placeholder="$t('Set investment operation taxes')" :rules="RulesFloatGEZ(12,true,account.decimals)" counter="12"/>
Expand Down

0 comments on commit 060f324

Please sign in to comment.