Compare commits

..

No commits in common. "9e65f6d46df33abfc6c52cc3b4a989ffd9eb1252" and "a23ff0c00863e979b30ae210e6d83f4dfb0378cc" have entirely different histories.

3 changed files with 11 additions and 23 deletions

View File

@ -129,9 +129,7 @@ const DocumentPrinterInfo = () => {
}}
editLoading={objectFormState.editLoading}
formValid={objectFormState.formValid}
disabled={
objectFormState.beingEditedByOther || objectFormState.loading
}
disabled={objectFormState.beingEditedByOther || objectFormState.loading}
loading={objectFormState.editLoading}
/>
</Space>
@ -166,7 +164,6 @@ const DocumentPrinterInfo = () => {
loading={loading}
indicator={<LoadingOutlined />}
isEditing={isEditing}
labelWidth={165}
type='documentPrinter'
objectData={objectData}
/>

View File

@ -21,7 +21,6 @@ const NewDocumentPrinter = ({ onOk, defaultValues }) => {
bordered={false}
isEditing={true}
required={true}
labelWidth={100}
objectData={objectData}
/>
)
@ -36,7 +35,6 @@ const NewDocumentPrinter = ({ onOk, defaultValues }) => {
bordered={false}
isEditing={true}
required={false}
labelWidth={125}
visibleProperties={{ content: false, testObject: false }}
objectData={objectData}
/>
@ -54,12 +52,8 @@ const NewDocumentPrinter = ({ onOk, defaultValues }) => {
_id: false,
_reference: false,
createdAt: false,
connectedAt: false,
state: false,
online: false,
updatedAt: false
}}
labelWidth={130}
isEditing={false}
objectData={objectData}
/>

View File

@ -91,13 +91,6 @@ export const DocumentPrinter = {
readOnly: true,
columnWidth: 180
},
{
name: 'updatedAt',
label: 'Updated At',
type: 'dateTime',
readOnly: true,
columnWidth: 175
},
{
name: 'name',
label: 'Name',
@ -106,15 +99,13 @@ export const DocumentPrinter = {
columnWidth: 200,
columnFixed: 'left'
},
{
name: 'connectedAt',
label: 'Connected At',
name: 'updatedAt',
label: 'Updated At',
type: 'dateTime',
readOnly: true,
columnWidth: 175
},
{
name: 'state',
label: 'Status',
@ -124,7 +115,13 @@ export const DocumentPrinter = {
readOnly: true,
columnWidth: 260
},
{
name: 'connectedAt',
label: 'Connected At',
type: 'dateTime',
readOnly: true,
columnWidth: 175
},
{
name: 'online',
label: 'Online',
@ -211,7 +208,7 @@ export const DocumentPrinter = {
},
{
name: 'currentDocumentSize',
label: 'Document Size',
label: 'Current Document Size',
required: false,
type: 'object',
objectType: 'documentSize',