Skip to content

Commit

Permalink
ui agent wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bokkypoobah committed Sep 10, 2024
1 parent 9b9b2e4 commit c98f2a0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/agent.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const Agent = {
<b-form-select size="sm" id="addoffers-pricing" v-model="settings.addOffers.pricing" @change="saveSettings" :options="pricing20Options" v-b-popover.hover.ds500="'Single or multiple prices and/or limits'" class="w-25"></b-form-select>
</b-form-group>
<b-form-group v-if="settings.addOffers.type == 20 && settings.addOffers.pricing < 2" label="Price:" label-for="addoffers-price" label-size="sm" label-cols-sm="3" label-align-sm="right" :description="'Enter price to ' + settings.addOffers.decimals + ' decimal places'" class="mx-0 my-1 p-0">
<b-form-group v-if="settings.addOffers.type == 20 && settings.addOffers.pricing < 2" label="Price:" label-for="addoffers-price" label-size="sm" label-cols-sm="3" label-align-sm="right" :description="'Enter price in [W]ETH to ' + settings.addOffers.decimals + ' decimal places'" class="mx-0 my-1 p-0">
<b-form-input size="sm" type="number" id="addoffers-price" v-model.trim="settings.addOffers.price" @change="saveSettings" class="w-25"></b-form-input>
</b-form-group>
Expand Down
10 changes: 5 additions & 5 deletions docs/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,11 @@ const dataModule = {
if (!(info.address in state.tokenContracts[info.chainId])) {
Vue.set(state.tokenContracts[info.chainId], info.address, {
type: info.type,
symbol: info.symbol || null,
name: info.name || null,
decimals: info.decimals || null,
totalSupply: info.totalSupply || null,
slug: info.slug || null,
symbol: info.symbol,
name: info.name,
decimals: info.decimals,
totalSupply: info.totalSupply,
slug: info.slug,
image: info.image,
watch: false,
transfers: false,
Expand Down

0 comments on commit c98f2a0

Please sign in to comment.