Skip to content

Commit

Permalink
Merge pull request #337 from getmaxun/routing
Browse files Browse the repository at this point in the history
feat: set output as default tab for run
  • Loading branch information
amhsirak authored Jan 10, 2025
2 parents 82c62f2 + 32ab228 commit 32856c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/run/RunContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface RunContentProps {

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

Expand Down

0 comments on commit 32856c7

Please sign in to comment.