Minor UI changes

This commit is contained in:
Douglas Barone 2022-04-20 08:02:31 -04:00
parent 33233f5947
commit 1431329bd9

View File

@ -11,17 +11,17 @@
</v-col>
<v-col v-if="!$apollo.queries.user.loading && username">
<v-card>
<v-card-title> Informações do usuário </v-card-title>
<v-card-text>
<div v-if="user">
<vue-json-pretty
:data="user"
:show-double-quotes="false"
highlight-mouseover-node
show-line
show-length
/>
</div>
<v-card-title class="font-weight-regular">
Informações do usuário
</v-card-title>
<v-card-text v-if="user">
<vue-json-pretty
:data="user"
:show-double-quotes="false"
highlight-mouseover-node
show-line
show-length
/>
</v-card-text>
</v-card>
</v-col>