File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
govtool/frontend/src/pages Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ changes.
2020- Handle exception when no index is provided to /proposal/get endpoint [ Issue 1841] ( https://github.com/IntersectMBO/govtool/issues/1841 )
2121- Fix displaying vote pill on voted on cards
2222- Fix incorrect link to learn more about direct voters [ Issue 2647] ( https://github.com/IntersectMBO/govtool/issues/2647 )
23+ - Fix missing No DRep found message on DRep Directory [ Issue 2889] ( https://github.com/IntersectMBO/govtool/issues/2889 )
2324
2425### Changed
2526
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ export const DRepDirectoryContent: FC<DRepDirectoryContentProps> = ({
217217 flex : 1 ,
218218 } }
219219 >
220- { dRepList ?. length === 0 && < EmptyStateDrepDirectory /> }
220+ { dRepListToDisplay ?. length === 0 && < EmptyStateDrepDirectory /> }
221221 { dRepListToDisplay ?. map ( ( dRep ) => (
222222 < Box key = { dRep . view } component = "li" sx = { { listStyle : "none" } } >
223223 < DRepCard
You can’t perform that action at this time.
0 commit comments