소스 검색

Fix? implementation of Show UIElement

jherve 2 년 전
부모
커밋
3f3b33e4e7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/LinkedIn/UIElements/Types.purs

+ 1 - 1
src/LinkedIn/UIElements/Types.purs

@@ -42,5 +42,5 @@ data UIElement =
 
 derive instance Generic UIElement _
 instance Show UIElement where
-  show (UIDotSeparated ui1 ui2) = "(UIDotSeparated " <> genericShow ui1 <> genericShow ui2 <> ")"
+  show (UIDotSeparated ui1 ui2) = "(UIDotSeparated " <> show ui1 <> show ui2 <> ")"
   show u = genericShow u