Skip to content

Commit

Permalink
enhance farm details UI (#211)
Browse files Browse the repository at this point in the history
* change stellar field ui

* enhance farm details ui
  • Loading branch information
0oM4R authored May 7, 2023
1 parent d5f00a9 commit f8534fa
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions packages/dashboard/src/portal/views/Farms.vue
Original file line number Diff line number Diff line change
Expand Up @@ -123,16 +123,18 @@
<v-flex class="text-left">Stellar Payout Address</v-flex>
</v-col>
<v-col v-if="item.v2address">
<v-row
class="d-flex align-baseline justify-between"
style="text-overflow: ellipsis; white-space: nowrap; overflow: hidden"
>
<v-row style="margin: 0">
<span style="font-size: small">
{{ item.v2address }}
</span>
</v-row>
<v-btn x-small @click="openV2AddressDialog = true">Edit</v-btn>
<v-row class="d-flex align-baseline justify-between pl-3">
<v-text-field
outlined
class="pt-1 text-caption"
dense
hide-details
:value="item.v2address"
:readonly="!!item.v2address"
:append-icon="'mdi-pencil'"
@click:append="openV2AddressDialog = true"
>
</v-text-field>
</v-row>
</v-col>
<v-col v-else>
Expand Down Expand Up @@ -175,12 +177,13 @@
</v-col>
<v-col>
<v-flex>
<v-btn x-small v-bind:href="'https://v3.bootstrap.grid.tf/'" target="blank">view bootstrap</v-btn>
<v-btn small v-bind:href="'https://v3.bootstrap.grid.tf/'" target="blank">view bootstrap</v-btn>
</v-flex>
</v-col>
</v-row>

<PublicIPTable
class="pt-4"
:ips="item.publicIps"
:deleteIP="deletePublicIP"
:loadingDelete="loadingDeleteIP"
Expand Down

0 comments on commit f8534fa

Please sign in to comment.