Skip to content

Commit

Permalink
Team row padding
Browse files Browse the repository at this point in the history
  • Loading branch information
Dschoordsch committed Feb 6, 2025
1 parent d86be58 commit 7e89f3a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions packages/mattermost-plugin/components/Sidepanel/TeamRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,9 @@ const TeamRow = ({teamRef}: Props) => {
</div>
<div className='flex grow flex-col items-start p-2'>
<div className='flex w-full flex-col'>
<div className='flex justify-between'>
<a href={`${pluginServerRoute}/parabol/meet/${id}`} className='text-2xl font-bold'>
{name}
</a>
<MoreMenu
options={[
{
label: 'Unlink',
onClick: handleUnlink
}
]}
/>
</div>
<a href={`${pluginServerRoute}/parabol/meet/${id}`} className='text-2xl font-bold'>
{name}
</a>
<div className='font-semibold text-slate-400'>
{`${teamMembers.length} ${plural(teamMembers.length, 'member')}`}
</div>
Expand All @@ -76,6 +66,16 @@ const TeamRow = ({teamRef}: Props) => {
</button>
</div>
</div>
<div className='p-2'>
<MoreMenu
options={[
{
label: 'Unlink',
onClick: handleUnlink
}
]}
/>
</div>
</div>
)
}
Expand Down

0 comments on commit 7e89f3a

Please sign in to comment.