fix: spreadsheet view properties fix (#2599)

This commit is contained in:
Anmol Singh Bhatia 2023-11-02 16:01:49 +05:30 committed by GitHub
parent f6b95b8d31
commit 4512651f8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 50 additions and 19 deletions

View file

@ -35,9 +35,9 @@ export const IssuePropertyState: React.FC<IIssuePropertyState> = observer((props
onChange,
disabled,
hideDropdownArrow = false,
className,
buttonClassName,
optionsClassName,
className = "",
buttonClassName = "",
optionsClassName = "",
placement,
} = props;
@ -110,7 +110,7 @@ export const IssuePropertyState: React.FC<IIssuePropertyState> = observer((props
<button
ref={setReferenceElement}
type="button"
className={`flex items-center justify-between gap-1 w-full text-xs px-2.5 py-1 rounded border-[0.5px] border-custom-border-300 duration-300 focus:outline-none ${
className={`flex items-center justify-between gap-1 w-full text-xs px-2.5 py-1 rounded border-[0.5px] border-custom-border-300 ${
disabled ? "cursor-not-allowed text-custom-text-200" : "cursor-pointer hover:bg-custom-background-80"
} ${buttonClassName}`}
onClick={() => fetchProjectStates()}