mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
Prettier
This commit is contained in:
@@ -3,4 +3,4 @@ export { default as NavUtils } from "./navigation";
|
||||
export { default as TableUtils } from "./table";
|
||||
export { default as TextUtils } from "./text";
|
||||
export { default as DurationUtils } from "./duration";
|
||||
export { default as JWUtils } from './jwplayer';
|
||||
export { default as JWUtils } from "./jwplayer";
|
||||
|
||||
@@ -1,7 +1,5 @@
|
||||
const playerID = "main-jwplayer";
|
||||
const getPlayer = () => (
|
||||
(window as any).jwplayer(playerID)
|
||||
)
|
||||
const getPlayer = () => (window as any).jwplayer(playerID);
|
||||
|
||||
export default {
|
||||
playerID,
|
||||
|
||||
@@ -94,7 +94,11 @@ const renderHtmlSelect = (options: {
|
||||
options.onChange(event.currentTarget.value)
|
||||
}
|
||||
>
|
||||
{ options.selectOptions.map(opt => <option value={opt} key={opt}>{opt}</option>)}
|
||||
{options.selectOptions.map(opt => (
|
||||
<option value={opt} key={opt}>
|
||||
{opt}
|
||||
</option>
|
||||
))}
|
||||
</Form.Control>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user