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", "name": "ifms-pti-svr",
"version": "2.12.7", "version": "2.12.8",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "ifms-pti-svr", "name": "ifms-pti-svr",
"version": "2.12.7", "version": "2.12.8",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@prisma/client": "^3.11.0", "@prisma/client": "^3.11.0",

View File

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

4
web/package-lock.json generated
View File

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

View File

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

View File

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

View File

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