Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thokra-nav committed Feb 22, 2024
1 parent 1029f81 commit cedf798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
</Tr>
{:else}
<Tr>
<Td colspan={4}>No apps found</Td>
<Td colspan={999}>No apps found</Td>
</Tr>
{/each}
{/if}
Expand Down
4 changes: 3 additions & 1 deletion src/routes/team/[team]/(teamTabs)/members/AddMember.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@
value: r.name,
description: r.description
})) ?? [];
selectedRecs = recs.map((r) => r.name);
});
});
Expand Down Expand Up @@ -127,7 +129,7 @@

<CheckboxGroup legend="Enabled features" bind:value={selectedRecs}>
{#each reconcilers as reconciler}
<Checkbox value={reconciler.value} checked>
<Checkbox value={reconciler.value} checked={true}>
<span class="option">
{reconciler.name}
<HelpText title="" wrapperClass="tooltipAddMemberWrapper">
Expand Down

0 comments on commit cedf798

Please sign in to comment.