Skip to content

Commit 4d590d7

Browse files
committed
๐ŸŽจ ์ด๋ฏธ์ง€ ๋ถˆ๋Ÿฌ์˜ค๋Š” ๊ฐ’ ๋ณ€๊ฒฝ
1 parent 8c81a2e commit 4d590d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

โ€Žsrc/main/java/com/going/server/domain/graph/service/GraphServiceImpl.javaโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public GraphListDto getGraphList() {
4949

5050
for (Graph graph : graphs) {
5151
Optional<GraphNode> targetNode = graph.getNodes().stream()
52-
.filter(node -> node.getNodeId() == 0)
52+
.filter(node -> node.getLevel() == 0)
5353
.findFirst();
5454
String image = targetNode
5555
.map(node -> getImage(node.getLabel()))

0 commit comments

Comments
ย (0)