[WEB-1611] style: fixed state column width for consistency. (#4859)
This commit is contained in:
parent
59f0e9fe2c
commit
e43b4b3d47
1 changed files with 2 additions and 1 deletions
|
|
@ -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}
|
||||
|
|
@ -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>
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue