Compare commits
2 Commits
9e65f6d46d
...
4fbb434103
| Author | SHA1 | Date | |
|---|---|---|---|
| 4fbb434103 | |||
| 71b432ba4d |
@ -121,7 +121,9 @@ const DocumentSizeInfo = () => {
|
|||||||
}}
|
}}
|
||||||
editLoading={objectFormState.editLoading}
|
editLoading={objectFormState.editLoading}
|
||||||
formValid={objectFormState.formValid}
|
formValid={objectFormState.formValid}
|
||||||
disabled={objectFormState.beingEditedByOther || objectFormState.loading}
|
disabled={
|
||||||
|
objectFormState.beingEditedByOther || objectFormState.loading
|
||||||
|
}
|
||||||
loading={objectFormState.editLoading}
|
loading={objectFormState.editLoading}
|
||||||
/>
|
/>
|
||||||
</Space>
|
</Space>
|
||||||
@ -154,6 +156,7 @@ const DocumentSizeInfo = () => {
|
|||||||
loading={loading}
|
loading={loading}
|
||||||
indicator={<LoadingOutlined />}
|
indicator={<LoadingOutlined />}
|
||||||
isEditing={isEditing}
|
isEditing={isEditing}
|
||||||
|
labelWidth={160}
|
||||||
type='documentSize'
|
type='documentSize'
|
||||||
objectData={objectData}
|
objectData={objectData}
|
||||||
/>
|
/>
|
||||||
|
|||||||
@ -126,7 +126,9 @@ const DocumentTemplateInfo = () => {
|
|||||||
}}
|
}}
|
||||||
editLoading={objectFormState.editLoading}
|
editLoading={objectFormState.editLoading}
|
||||||
formValid={objectFormState.formValid}
|
formValid={objectFormState.formValid}
|
||||||
disabled={objectFormState.beingEditedByOther || objectFormState.loading}
|
disabled={
|
||||||
|
objectFormState.beingEditedByOther || objectFormState.loading
|
||||||
|
}
|
||||||
loading={objectFormState.editLoading}
|
loading={objectFormState.editLoading}
|
||||||
/>
|
/>
|
||||||
</Space>
|
</Space>
|
||||||
@ -167,7 +169,7 @@ const DocumentTemplateInfo = () => {
|
|||||||
content: false,
|
content: false,
|
||||||
testObject: false
|
testObject: false
|
||||||
}}
|
}}
|
||||||
labelWidth='175px'
|
labelWidth='190px'
|
||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}}
|
}}
|
||||||
|
|||||||
@ -84,6 +84,13 @@ export const DocumentJob = {
|
|||||||
readOnly: true,
|
readOnly: true,
|
||||||
columnWidth: 180
|
columnWidth: 180
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'updatedAt',
|
||||||
|
label: 'Updated At',
|
||||||
|
type: 'dateTime',
|
||||||
|
readOnly: true,
|
||||||
|
columnWidth: 175
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'name',
|
name: 'name',
|
||||||
label: 'Name',
|
label: 'Name',
|
||||||
@ -97,13 +104,7 @@ export const DocumentJob = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'updatedAt',
|
|
||||||
label: 'Updated At',
|
|
||||||
type: 'dateTime',
|
|
||||||
readOnly: true,
|
|
||||||
columnWidth: 175
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'state',
|
name: 'state',
|
||||||
label: 'Status',
|
label: 'Status',
|
||||||
|
|||||||
@ -98,6 +98,13 @@ export const DocumentSize = {
|
|||||||
readOnly: true,
|
readOnly: true,
|
||||||
columnWidth: 180
|
columnWidth: 180
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'updatedAt',
|
||||||
|
label: 'Updated At',
|
||||||
|
type: 'dateTime',
|
||||||
|
readOnly: true,
|
||||||
|
columnWidth: 175
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'name',
|
name: 'name',
|
||||||
label: 'Name',
|
label: 'Name',
|
||||||
@ -107,11 +114,11 @@ export const DocumentSize = {
|
|||||||
columnFixed: 'left'
|
columnFixed: 'left'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'updatedAt',
|
name: 'infiniteHeight',
|
||||||
label: 'Updated At',
|
label: 'Infinite Height',
|
||||||
type: 'dateTime',
|
required: true,
|
||||||
readOnly: true,
|
columnWidth: 150,
|
||||||
columnWidth: 175
|
type: 'bool'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'width',
|
name: 'width',
|
||||||
@ -128,16 +135,9 @@ export const DocumentSize = {
|
|||||||
columnWidth: 150,
|
columnWidth: 150,
|
||||||
type: 'number',
|
type: 'number',
|
||||||
suffix: 'mm',
|
suffix: 'mm',
|
||||||
disabled: (objectData) => {
|
visible: (objectData) => {
|
||||||
return objectData.infiniteHeight
|
return !objectData.infiniteHeight
|
||||||
}
|
}
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'infiniteHeight',
|
|
||||||
label: 'Infinite Height',
|
|
||||||
required: true,
|
|
||||||
columnWidth: 150,
|
|
||||||
type: 'bool'
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user