Skip to content

Commit aacfc00

Browse files
team selection icon
1 parent 9da99bd commit aacfc00

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/frontend/src/components/common/TeamSelector.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import {
2222
TabList
2323
} from '@fluentui/react-components';
2424
import {
25-
ChevronUp16Regular,
2625
ChevronDown16Regular,
26+
ChevronUpDown16Regular,
2727
CloudAdd20Regular,
2828
Delete20Regular,
2929
Search20Regular,
@@ -487,10 +487,7 @@ const TeamSelector: React.FC<TeamSelectorProps> = ({
487487
{selectedTeam ? selectedTeam.name : 'No team selected'}
488488
</Body1>
489489
</div>
490-
<div style={{ display: 'flex', flexDirection: 'column', gap: '1px' }}>
491-
<ChevronUp16Regular style={{ color: '#605e5c' }} />
492-
<ChevronDown16Regular style={{ color: '#605e5c' }} />
493-
</div>
490+
<ChevronUpDown16Regular style={{ color: '#605e5c' }} />
494491
</Button>
495492
</DialogTrigger>
496493
<DialogSurface style={{

src/frontend/src/components/content/PlanPanelLeft.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ const PlanPanelLeft: React.FC<PlanPanelLefProps> = ({
171171
</PanelLeftToolbar>
172172

173173
{/* Team Selector right under the toolbar */}
174-
<div style={{ padding: '0 16px', marginTop: '8px', marginBottom: '16px' }}>
174+
<div style={{ marginTop: '8px', marginBottom: '8px' }}>
175175
<TeamSelector
176176
onTeamSelect={handleTeamSelect}
177177
onTeamUpload={onTeamUpload}

0 commit comments

Comments
 (0)