Use _request data directly as rowData
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
51a4f68ce1
commit
dcdb6d5fb9
@ -3,7 +3,18 @@ const fastify = require('fastify')({ logger: true })
|
||||
|
||||
// Declare a route
|
||||
fastify.get('/', async (request, reply) => {
|
||||
return { hello: 'world' }
|
||||
return { data: [
|
||||
{
|
||||
component: 'VI_IT_VIRTUALIZATION',
|
||||
version: '2.4.0',
|
||||
os: 'vSphere 7.0U3a'
|
||||
},
|
||||
{
|
||||
component: 'VI_IT_SRV_LIN_UBUNTU',
|
||||
version: '1.3.0',
|
||||
os: 'Ubuntu 18.04 LTS'
|
||||
}
|
||||
] }
|
||||
})
|
||||
|
||||
// Run the server!
|
||||
|
@ -45,18 +45,19 @@ areas:
|
||||
height: 500
|
||||
properties:
|
||||
rowData:
|
||||
- component: VI_IT_VIRTUALIZATION
|
||||
version: 2.4.0
|
||||
os: vSphere 7.0U3a
|
||||
- component: VI_IT_SRV_LIN_UBUNTU
|
||||
version: 1.3.0
|
||||
os: Ubuntu 18.04 LTS
|
||||
- component: VI_IT_SRV_WIN
|
||||
version: 3.9.1
|
||||
os: Windows Server 2019 Enterprise
|
||||
- component: VI_IT_CLT_WIN
|
||||
version: 3.6.0
|
||||
os: Windows 10 IoT Enterprise
|
||||
_request: all_components.data
|
||||
# - component: VI_IT_VIRTUALIZATION
|
||||
# version: 2.4.0
|
||||
# os: vSphere 7.0U3a
|
||||
# - component: VI_IT_SRV_LIN_UBUNTU
|
||||
# version: 1.3.0
|
||||
# os: Ubuntu 18.04 LTS
|
||||
# - component: VI_IT_SRV_WIN
|
||||
# version: 3.9.1
|
||||
# os: Windows Server 2019 Enterprise
|
||||
# - component: VI_IT_CLT_WIN
|
||||
# version: 3.6.0
|
||||
# os: Windows 10 IoT Enterprise
|
||||
defaultColDef:
|
||||
sortable: false
|
||||
resizable: false
|
||||
|
Reference in New Issue
Block a user