Skip to content

Commit

Permalink
now uses description in container specification (#552)
Browse files Browse the repository at this point in the history
  • Loading branch information
runeanielsen authored Oct 8, 2024
1 parent d5a0047 commit 1734d81
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const getFilteredSpanEquipmentSpecifications = (
) => {
const bodyItems = specifications.map<BodyItem>((x) => {
return {
rows: [{ id: 0, value: x.name }],
rows: [{ id: 0, value: x.description }],
id: x.id,
};
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export interface NodeContainerSpecification {
id: string;
category: string;
name: string;
description: string;
deprecated: boolean;
manufacturerRefs: string[];
}
Expand All @@ -30,6 +31,7 @@ query {
category
name
description
description
deprecated
manufacturerRefs
},
Expand Down

0 comments on commit 1734d81

Please sign in to comment.