Minor UI updates

This commit is contained in:
Douglas Barone 2022-04-14 11:15:58 -04:00
parent d9c46ebd6d
commit 16f649a98e
6 changed files with 23 additions and 21 deletions

View File

@ -1,12 +1,12 @@
{
"name": "ifms-pti-svr",
"version": "2.12.7",
"version": "2.12.8",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "ifms-pti-svr",
"version": "2.12.7",
"version": "2.12.8",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.11.0",

View File

@ -1,6 +1,6 @@
{
"name": "ifms-pti-svr",
"version": "2.12.7",
"version": "2.12.8",
"description": "Servidor do Portal de TI do IFMS",
"main": "src/index.js",
"scripts": {

4
web/package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "ifms-pti",
"version": "2.12.7",
"version": "2.12.8",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "ifms-pti",
"version": "2.12.7",
"version": "2.12.8",
"dependencies": {
"@mdi/font": "^6.6.96",
"apollo-link-ws": "^1.0.20",

View File

@ -1,6 +1,6 @@
{
"name": "ifms-pti",
"version": "2.12.7",
"version": "2.12.8",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",

View File

@ -19,7 +19,7 @@
outlined
:label="label"
:prepend-inner-icon="
$apollo.queries.users.loading ? '' : 'mdi-account'
$apollo.queries.users.loading ? '' : 'mdi-account-search'
"
autofocus
auto-select-first
@ -37,7 +37,7 @@
</v-autocomplete>
</div>
<div v-else key="2">
<v-card v-if="user" outlined>
<v-card v-if="user" outlined class="mb-7">
<v-toolbar flat dense>
<Avatar :src="chosen.thumbnailPhoto" size="36px" />

View File

@ -2,7 +2,7 @@
<v-container fluid>
<v-row justify="center">
<v-col style="max-width: 480px">
<user-select v-model="username" />
<user-select v-model="username" class="mt-1" />
</v-col>
</v-row>
<v-row>
@ -10,7 +10,8 @@
<v-skeleton-loader class="ma-5" type="actions, article, article" />
</v-col>
<v-col v-if="!$apollo.queries.user.loading && username">
<v-card-title> Informações do Active Directory </v-card-title>
<v-card>
<v-card-title> Informações do usuário </v-card-title>
<v-card-text>
<div v-if="user">
<vue-json-pretty
@ -22,6 +23,7 @@
/>
</div>
</v-card-text>
</v-card>
</v-col>
</v-row>
</v-container>