Group subjobs by job.

This commit is contained in:
Tom Butcher 2025-12-03 00:08:43 +00:00
parent 2e8f627c83
commit 10a4b33620

View File

@ -31,6 +31,7 @@ export const SubJob = {
columns: ['_id', 'printer', 'printer._id', 'job._id', 'state', 'createdAt'],
filters: ['state', '_id', 'job._id', 'printer._id'],
sorters: ['createdAt', 'state'],
group: ['job'],
properties: [
{
name: '_id',
@ -67,6 +68,12 @@ export const SubJob = {
readOnly: true,
columnWidth: 175
},
{
name: 'job',
label: 'Job',
type: 'object',
objectType: 'job'
},
{
name: 'job._id',
label: 'Job ID',