Skip to content

Commit

Permalink
fix: product status should be auto generated and not manually editable (
Browse files Browse the repository at this point in the history
  • Loading branch information
EllaMartirosyan authored Sep 14, 2022
1 parent a801797 commit d2e1b88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/models/layerMetadata/layer3DMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1152,7 +1152,7 @@ export class Layer3DMetadata implements ILayer3DMetadata, IMetadataCommonModel {
@graphql()
@fieldConfig({
category: FieldCategory.GENERAL,
isManuallyEditable: true,
isAutoGenerated: true,
})
//#endregion
public productStatus: RecordStatus | undefined = RecordStatus.UNPUBLISHED;
Expand Down
2 changes: 1 addition & 1 deletion src/models/layerMetadata/quantizedMeshBestMetadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ export class QuantizedMeshBestMetadata implements IQuantizedMeshBestMetadata, IM
@graphql()
@fieldConfig({
category: FieldCategory.GENERAL,
isManuallyEditable: true,
isAutoGenerated: true,
})
//#endregion
public productStatus: RecordStatus | undefined = RecordStatus.UNPUBLISHED;
Expand Down

0 comments on commit d2e1b88

Please sign in to comment.