+ {Object.entries(field.value.git_custom_nodes).map(
+ ([key, item], index) => (
+
+
+
+
+
+
+
+
+ {
+ const newNodeList = {
+ ...field.value.git_custom_nodes,
+ };
+ delete newNodeList[key];
+ const nodeList = newNodeList;
+ const newValue = {
+ ...field.value,
+ git_custom_nodes: nodeList,
+ };
+ field.onChange(newValue);
+ }}
+ >
+ Delete
+
+
+
+
+ ),
+ )}
+
)}