This commit is contained in:
Douglas Barone 2022-05-02 15:54:45 -04:00
parent d648178f89
commit 1563754c2a
6 changed files with 8 additions and 7 deletions

View File

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

View File

@ -1,6 +1,6 @@
{ {
"name": "ifms-pti-svr", "name": "ifms-pti-svr",
"version": "2.14.0", "version": "2.15.1",
"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.14.0", "version": "2.15.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "ifms-pti", "name": "ifms-pti",
"version": "2.14.0", "version": "2.15.1",
"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.14.0", "version": "2.15.1",
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "serve": "vue-cli-service serve",

View File

@ -92,7 +92,7 @@ export default {
return this.wifiDevices.map(device => ({ return this.wifiDevices.map(device => ({
...device.accessPoint, ...device.accessPoint,
...device, ...device,
accessPointId: device.accessPoint.id accessPointId: device.accessPoint?.id
})) }))
} }
} }

View File

@ -91,6 +91,7 @@
</v-expansion-panel-header> </v-expansion-panel-header>
<v-expansion-panel-content> <v-expansion-panel-content>
<v-expansion-panels accordion> <v-expansion-panels accordion>
<v-divider />
<wifi-devices-table :wifi-devices="user.wifiDevices" /> <wifi-devices-table :wifi-devices="user.wifiDevices" />
</v-expansion-panels> </v-expansion-panels>
</v-expansion-panel-content> </v-expansion-panel-content>