Skip to content

Commit 32856c7

Browse files
authored
Merge pull request #337 from getmaxun/routing
feat: set output as default tab for run
2 parents 82c62f2 + 32ab228 commit 32856c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/run/RunContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ interface RunContentProps {
2525

2626
export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRef, abortRunHandler }: RunContentProps) => {
2727
const { t } = useTranslation();
28-
const [tab, setTab] = React.useState<string>('log');
28+
const [tab, setTab] = React.useState<string>('output');
2929
const [tableData, setTableData] = useState<any[]>([]);
3030
const [columns, setColumns] = useState<string[]>([]);
3131

0 commit comments

Comments
 (0)