This commit is contained in:
bakhirev 2024-08-10 21:36:45 +03:00
parent 8e76959779
commit c132c7aac3
5 changed files with 8 additions and 8 deletions

View file

@ -1 +1 @@
<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" /></svg> <?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="#84858D"><path d="M16.59 8.59 12 13.17 7.41 8.59 6 10l6 6 6-6-1.41-1.41z" /></svg>

Before

Width:  |  Height:  |  Size: 171 B

After

Width:  |  Height:  |  Size: 188 B

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -13,7 +13,7 @@ interface IUiKitSelectWithButtonsProps extends IUiKitWrapperProps {
className?: string; className?: string;
value: any; value: any;
options: any[]; options: any[];
reverse: boolean; reverse?: boolean;
onChange: Function; onChange: Function;
} }

View file

@ -44,7 +44,7 @@ const Tempo = observer((): React.ReactElement => {
const firstIndex = rows.length - 1; const firstIndex = rows.length - 1;
const firstPoint = rows[firstIndex]; const firstPoint = rows[firstIndex];
const [filters, setFilters] = useState<any>({ week: firstPoint.week }); const [filters, setFilters] = useState<any>({ user: 0, week: firstPoint.week });
const user = filters.user const user = filters.user
? users[filters.user - 1] ? users[filters.user - 1]
: ''; : '';