mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 12:24:38 +03:00
Improve list table readability (#4497)
* fixes mandatory columns bug and consistency issues
This commit is contained in:
@@ -843,7 +843,7 @@ export const ListSelect = <T extends {}>(props: IListSelect<T>) => {
|
||||
};
|
||||
|
||||
type DisableOption = Option & {
|
||||
disabled?: boolean;
|
||||
isDisabled?: boolean;
|
||||
};
|
||||
|
||||
interface ICheckBoxSelectProps {
|
||||
@@ -861,7 +861,7 @@ export const CheckBoxSelect: React.FC<ICheckBoxSelectProps> = ({
|
||||
<reactSelectComponents.Option {...props}>
|
||||
<input
|
||||
type="checkbox"
|
||||
disabled={props.data.disabled}
|
||||
disabled={props.isDisabled}
|
||||
checked={props.isSelected}
|
||||
onChange={() => null}
|
||||
className="mr-1"
|
||||
|
||||
Reference in New Issue
Block a user