Skip to content

Commit

Permalink
Merge pull request #38 from golemfactory/fix-ui-lacking-schema
Browse files Browse the repository at this point in the history
Fix schema for node descriptor
  • Loading branch information
nieznanysprawiciel authored Apr 3, 2024
2 parents a542ad3 + 4d9fa34 commit 5ccb78e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/ui/node_descriptor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl DocumentEditor for NodeDescriptorEditor {
permissions: Some(self.permissions.get_permissions()),
validity_period: Some(self.validity_period.get_validity_period()),
};
json!({ "nodeDescriptor": template })
json!({ "$schema": SIGNED_NODE_DESCRIPTOR_SCHEMA_ID, "nodeDescriptor": template })
}

fn create_signed_document(
Expand Down

0 comments on commit 5ccb78e

Please sign in to comment.