selectBoard(hash)}
@@ -193,6 +191,7 @@
font-size: 16px;
font-weight: bold;
transition: all .25s ease;
+ top: 3px;
padding: 15px 0;
box-shadow: 0px 4px 8px rgba(35, 32, 74, 0);
}
diff --git a/ui/src/GroupParticipants.svelte b/ui/src/GroupParticipants.svelte
index 3e33566..6406244 100644
--- a/ui/src/GroupParticipants.svelte
+++ b/ui/src/GroupParticipants.svelte
@@ -30,30 +30,40 @@
style="height: 40px; width: 100%"
>
{:else}
-
Contributed to:
-
- {#each $agents.status=="complete" ? Array.from($agents.value) : [] as agentPubKey}
-
-
-
- {#if $agentBoards.status=="complete"}
-
- {#each $agentBoards.value.get(agentPubKey) as board}
-
{
- store.boardList.setActiveBoard(board.board.hash)
- close()
- }}>{board.latestState.name}x
- {/each}
-
- {/if}
+
Participants
+
+ {#each $agents.status=="complete" ? Array.from($agents.value) : [] as agentPubKey}
+
+
+
+ {#if $agentBoards.status=="complete"}
+
+
Contributor to
+ {#each $agentBoards.value.get(agentPubKey) as board}
+
{
+ store.boardList.setActiveBoard(board.board.hash)
+ close()
+ }}>{board.latestState.name}
+ {/each}
+ {/if}
- {/each}
- {/if}
+
+ {/each}
+
+ {/if}
\ No newline at end of file