forked from cerc-io/cosmos-explorer
Remove unimplement links
This commit is contained in:
parent
2883f1bfe7
commit
5132f7a8ae
@ -61,7 +61,15 @@
|
|||||||
<dark-Toggler class="d-none d-lg-block" />
|
<dark-Toggler class="d-none d-lg-block" />
|
||||||
<search-bar />
|
<search-bar />
|
||||||
<locale />
|
<locale />
|
||||||
<b-dropdown
|
<b-button
|
||||||
|
v-ripple.400="'rgba(255, 255, 255, 0.15)'"
|
||||||
|
variant="primary"
|
||||||
|
class="btn-icon"
|
||||||
|
:to="{ name: 'accounts' }"
|
||||||
|
>
|
||||||
|
<feather-icon icon="UserIcon" />
|
||||||
|
</b-button>
|
||||||
|
<!-- <b-dropdown
|
||||||
class="ml-1"
|
class="ml-1"
|
||||||
variant="link"
|
variant="link"
|
||||||
no-caret
|
no-caret
|
||||||
@ -79,13 +87,13 @@
|
|||||||
</b-button>
|
</b-button>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<!-- <b-dropdown-item :to="{ name: 'portfolio' }">
|
<b-dropdown-item :to="{ name: 'portfolio' }">
|
||||||
<feather-icon
|
<feather-icon
|
||||||
icon="PieChartIcon"
|
icon="PieChartIcon"
|
||||||
size="16"
|
size="16"
|
||||||
/>
|
/>
|
||||||
<span class="align-middle ml-50">Portofolio</span>
|
<span class="align-middle ml-50">Portofolio</span>
|
||||||
</b-dropdown-item> -->
|
</b-dropdown-item>
|
||||||
|
|
||||||
<b-dropdown-item :to="{ name: 'accounts' }">
|
<b-dropdown-item :to="{ name: 'accounts' }">
|
||||||
<feather-icon
|
<feather-icon
|
||||||
@ -110,14 +118,14 @@
|
|||||||
/>
|
/>
|
||||||
<span class="align-middle ml-50">Setting</span>
|
<span class="align-middle ml-50">Setting</span>
|
||||||
</b-dropdown-item>
|
</b-dropdown-item>
|
||||||
</b-dropdown>
|
</b-dropdown> -->
|
||||||
</b-navbar-nav>
|
</b-navbar-nav>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import {
|
import {
|
||||||
BLink, BNavbarNav, BMedia, BMediaAside, BAvatar, BMediaBody, VBTooltip, BButton, BDropdown, BDropdownItem,
|
BLink, BNavbarNav, BMedia, BMediaAside, BAvatar, BMediaBody, VBTooltip, BButton,
|
||||||
} from 'bootstrap-vue'
|
} from 'bootstrap-vue'
|
||||||
import Ripple from 'vue-ripple-directive'
|
import Ripple from 'vue-ripple-directive'
|
||||||
import DarkToggler from '@core/layouts/components/app-navbar/components/DarkToggler.vue'
|
import DarkToggler from '@core/layouts/components/app-navbar/components/DarkToggler.vue'
|
||||||
@ -136,8 +144,6 @@ export default {
|
|||||||
BMediaAside,
|
BMediaAside,
|
||||||
BMediaBody,
|
BMediaBody,
|
||||||
BButton,
|
BButton,
|
||||||
BDropdown,
|
|
||||||
BDropdownItem,
|
|
||||||
|
|
||||||
// Navbar Components
|
// Navbar Components
|
||||||
DarkToggler,
|
DarkToggler,
|
||||||
|
@ -164,14 +164,12 @@
|
|||||||
<b-td> Vesting Periods </b-td>
|
<b-td> Vesting Periods </b-td>
|
||||||
<b-td>
|
<b-td>
|
||||||
<b-table-simple>
|
<b-table-simple>
|
||||||
<th style="width:50px;">
|
<th>Length</th><th>Amount</th>
|
||||||
#
|
|
||||||
</th><th>Length</th><th>Amount</th>
|
|
||||||
<b-tr
|
<b-tr
|
||||||
v-for="p, index in account.value.vesting_periods"
|
v-for="p, index in account.value.vesting_periods"
|
||||||
:key="index"
|
:key="index"
|
||||||
>
|
>
|
||||||
<td>{{ index+1 }}</td><td>{{ p.length }} - {{ formatLength(p.length) }} </td><td>{{ formatToken(p.amount) }}</td>
|
<td>{{ p.length }} - {{ formatLength(p.length) }} </td><td>{{ formatToken(p.amount) }}</td>
|
||||||
</b-tr>
|
</b-tr>
|
||||||
</b-table-simple>
|
</b-table-simple>
|
||||||
</b-td>
|
</b-td>
|
||||||
|
Loading…
Reference in New Issue
Block a user