mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Remove or exempt all uses of 'any
* Refactored LocalForage * Refactored SceneFilenameParser
This commit is contained in:
@@ -265,7 +265,7 @@ export const SceneSelectedOptions: React.FC<IListOperationProps> = (
|
||||
<Form.Control
|
||||
as="select"
|
||||
value={rating}
|
||||
onChange={(event: any) => setRating(event.target.value)}
|
||||
onChange={(event: React.FormEvent<HTMLSelectElement>) => setRating(event.currentTarget.value)}
|
||||
>
|
||||
{["", "1", "2", "3", "4", "5"].map(opt => (
|
||||
<option key={opt} value={opt}>
|
||||
|
||||
Reference in New Issue
Block a user