Skip to content

Commit

Permalink
Hide node_key from blue print graph attributes (#1579)
Browse files Browse the repository at this point in the history
* fix(hide-node-key): hide node_key from blue print graph attributes

* fix(hide-node-key): hide node_key from blue print graph attributes
  • Loading branch information
MahtabBukhari authored Jun 4, 2024
1 parent 44b586b commit 4165b26
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export const FormInput = ({ parentParam }: { parentParam: string }) => {
parsedDataDefault = parseJson(data)
}

parsedDataDefault = parsedDataDefault.filter((x) => x.key !== 'node_key')

replace(parsedDataDefault)
setParsedData(parsedDataDefault)
} catch (error) {
Expand Down

0 comments on commit 4165b26

Please sign in to comment.