Added more columns
This commit is contained in:
parent
986e5fcff5
commit
0594cf82cd
@ -36,9 +36,9 @@ export const DocumentJob = {
|
|||||||
`/dashboard/management/documentjobs/info?documentJobId=${_id}&action=edit`
|
`/dashboard/management/documentjobs/info?documentJobId=${_id}&action=edit`
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
columns: ['name', '_id', 'width', 'height', 'createdAt', 'updatedAt'],
|
columns: ['name', '_id', 'state', 'createdAt', 'updatedAt'],
|
||||||
filters: ['name', '_id', 'width', 'height'],
|
filters: ['name', '_id', 'state'],
|
||||||
sorters: ['name', 'width', 'height', 'createdAt', 'updatedAt'],
|
sorters: ['name', 'state', 'createdAt', 'updatedAt'],
|
||||||
properties: [
|
properties: [
|
||||||
{
|
{
|
||||||
name: '_id',
|
name: '_id',
|
||||||
|
|||||||
@ -38,13 +38,15 @@ export const DocumentPrinter = {
|
|||||||
columns: [
|
columns: [
|
||||||
'name',
|
'name',
|
||||||
'_id',
|
'_id',
|
||||||
'documentSize',
|
'state',
|
||||||
'documentSize._id',
|
'host',
|
||||||
'createdAt',
|
'host._id',
|
||||||
|
'tags',
|
||||||
|
'connectedAt',
|
||||||
'updatedAt'
|
'updatedAt'
|
||||||
],
|
],
|
||||||
filters: ['name', '_id'],
|
filters: ['name', '_id'],
|
||||||
sorters: ['name', 'documentSize', 'createdAt', 'updatedAt'],
|
sorters: ['name', 'documentSize', 'connectedAt', 'updatedAt'],
|
||||||
properties: [
|
properties: [
|
||||||
{
|
{
|
||||||
name: '_id',
|
name: '_id',
|
||||||
|
|||||||
@ -35,9 +35,24 @@ export const DocumentSize = {
|
|||||||
`/dashboard/management/documentsizes/info?documentSizeId=${_id}&action=edit`
|
`/dashboard/management/documentsizes/info?documentSizeId=${_id}&action=edit`
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
columns: ['name', '_id', 'width', 'height', 'createdAt', 'updatedAt'],
|
columns: [
|
||||||
filters: ['name', '_id', 'width', 'height'],
|
'name',
|
||||||
sorters: ['name', 'width', 'height', 'createdAt', 'updatedAt'],
|
'_id',
|
||||||
|
'width',
|
||||||
|
'height',
|
||||||
|
'infiniteHeight',
|
||||||
|
'createdAt',
|
||||||
|
'updatedAt'
|
||||||
|
],
|
||||||
|
filters: ['name', '_id', 'width', 'height', 'infiniteHeight'],
|
||||||
|
sorters: [
|
||||||
|
'name',
|
||||||
|
'width',
|
||||||
|
'height',
|
||||||
|
'infiniteHeight',
|
||||||
|
'createdAt',
|
||||||
|
'updatedAt'
|
||||||
|
],
|
||||||
properties: [
|
properties: [
|
||||||
{
|
{
|
||||||
name: '_id',
|
name: '_id',
|
||||||
|
|||||||
@ -167,7 +167,16 @@ export const Printer = {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
columns: ['name', '_id', 'state', 'tags', 'connectedAt'],
|
columns: [
|
||||||
|
'name',
|
||||||
|
'_id',
|
||||||
|
'state',
|
||||||
|
'host',
|
||||||
|
'host._id',
|
||||||
|
'tags',
|
||||||
|
'connectedAt',
|
||||||
|
'updatedAt'
|
||||||
|
],
|
||||||
filters: ['name', '_id', 'state', 'tags'],
|
filters: ['name', '_id', 'state', 'tags'],
|
||||||
sorters: ['name', 'state', 'connectedAt'],
|
sorters: ['name', 'state', 'connectedAt'],
|
||||||
group: ['tags'],
|
group: ['tags'],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user