Skip to content

Commit

Permalink
[WEB-1611] style: fixed state column width for consistency. (#4859)
Browse files Browse the repository at this point in the history
  • Loading branch information
prateekshourya29 committed Jun 18, 2024
1 parent 59f0e9f commit e43b4b3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const SpreadsheetStateColumn: React.FC<Props> = observer((props) => {
const { issue, onChange, disabled, onClose } = props;

return (
<div className="h-11 border-b-[0.5px] border-custom-border-200">
<div className="h-11 max-w-48 border-b-[0.5px] border-custom-border-200">
<StateDropdown
projectId={issue.project_id ?? undefined}
value={issue.state_id}
Expand All @@ -26,6 +26,7 @@ export const SpreadsheetStateColumn: React.FC<Props> = observer((props) => {
buttonClassName="text-left rounded-none group-[.selected-issue-row]:bg-custom-primary-100/5 group-[.selected-issue-row]:hover:bg-custom-primary-100/10"
buttonContainerClassName="w-full"
onClose={onClose}
showTooltip
/>
</div>
);
Expand Down

0 comments on commit e43b4b3

Please sign in to comment.