mirror of
https://github.com/sasjs/server.git
synced 2026-01-10 07:50:05 +00:00
chore: lint fixes
This commit is contained in:
@@ -56,7 +56,7 @@ const Studio = () => {
|
|||||||
}, [appContext.runTimes])
|
}, [appContext.runTimes])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if(runTimes.length) setSelectedRunTime(runTimes[0])
|
if (runTimes.length) setSelectedRunTime(runTimes[0])
|
||||||
}, [runTimes])
|
}, [runTimes])
|
||||||
|
|
||||||
const handleTabChange = (_e: any, newValue: string) => {
|
const handleTabChange = (_e: any, newValue: string) => {
|
||||||
@@ -184,7 +184,9 @@ const Studio = () => {
|
|||||||
onChange={handleChangeRunTime}
|
onChange={handleChangeRunTime}
|
||||||
>
|
>
|
||||||
{runTimes.map((runTime) => (
|
{runTimes.map((runTime) => (
|
||||||
<MenuItem key={runTime} value={runTime}>{runTime}</MenuItem>
|
<MenuItem key={runTime} value={runTime}>
|
||||||
|
{runTime}
|
||||||
|
</MenuItem>
|
||||||
))}
|
))}
|
||||||
</Select>
|
</Select>
|
||||||
</FormControl>
|
</FormControl>
|
||||||
|
|||||||
Reference in New Issue
Block a user