diff --git a/ui/src/Avatar.svelte b/ui/src/Avatar.svelte index 35c394c..9a13b83 100644 --- a/ui/src/Avatar.svelte +++ b/ui/src/Avatar.svelte @@ -11,6 +11,7 @@ export let agentPubKey: AgentPubKey export let size = 32 export let namePosition = "row" + export let nameColor = "rgba(86, 94, 109, 1.0)" export let showAvatar = true export let showNickname = true export let placeholder = false @@ -38,7 +39,7 @@ {/if} {/if} {#if showNickname} -
{ nickname }
+
{ nickname }
{/if} {/if} diff --git a/ui/src/BoardMenu.svelte b/ui/src/BoardMenu.svelte index 8e243c8..3230da3 100644 --- a/ui/src/BoardMenu.svelte +++ b/ui/src/BoardMenu.svelte @@ -48,12 +48,10 @@ class:wide={wide} > -
-
newBoardDialog.open()} title="New Board">New Board
-
{#if $activeBoards.status == "complete" && $activeBoards.value.length > 0} -

Active Boards

+

Boards

+
newBoardDialog.open()} title="New Board">New Board
{#each $activeBoards.value as hash}
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