Skip to content

Commit

Permalink
dreamfactorysoftware#308 - Fix JSON/YAML option issue
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed Aug 26, 2024
1 parent 00d9bcd commit 84b84e5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ export class DfServiceDetailsComponent implements OnInit {
fields: '*',
related: 'service_doc_by_service_id',
};
data.service_doc_by_service_id = null;
// data.service_doc_by_service_id = null;
payload = {
...data,
is_active: data.isActive,
Expand Down Expand Up @@ -461,7 +461,7 @@ export class DfServiceDetailsComponent implements OnInit {
}
delete payload.isActive;
} else {
data.service_doc_by_service_id = null;
// data.service_doc_by_service_id = null;
payload = {
...data,
id: this.edit ? this.serviceData.id : null,
Expand Down

0 comments on commit 84b84e5

Please sign in to comment.