chore(lite): remove fake cards from Pool Dashboard (#6385)

This commit is contained in:
Thierry Goettelmann 2022-08-30 10:55:01 +02:00 committed by Julien Fontanet
parent 9c9c656620
commit 8246db30cb

View File

@ -1,27 +1,11 @@
<template>
<div class="pool-dashboard-view">
<PoolDashboardStatus class="item" />
<UiCard style="min-width: 40rem">
<UiTitle type="h4">Storage usage</UiTitle>
<ProgressBar :value="65" style="margin: 1rem 0" />
<ProgressBar :value="50" style="margin: 1rem 0" />
<ProgressBar :value="40" style="margin: 1rem 0" />
<ProgressBar :value="22" style="margin: 1rem 0" />
</UiCard>
<UiCard>
<UiBadge>38/64 GB</UiBadge>
</UiCard>
</div>
</template>
<script lang="ts" setup>
import ProgressBar from "@/components/ProgressBar.vue";
import PoolDashboardStatus from "@/components/pool/dashboard/PoolDashboardStatus.vue";
import UiBadge from "@/components/ui/UiBadge.vue";
import UiCard from "@/components/ui/UiCard.vue";
import UiTitle from "@/components/ui/UiTitle.vue";
</script>
<style lang="postcss" scoped>