Skip to content

Commit

Permalink
default to notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
lloydtabb committed Jun 9, 2024
1 parent 3337d42 commit 91df191
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/Result/Result.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const Result: React.FC<ResultProps> = ({
.then(setHighlightedMarkdownMalloy)
// eslint-disable-next-line no-console
.catch(console.log);
highlightPre(indentCode(malloy.source), "malloy")
highlightPre(indentCode(malloy.notebook), "malloy")
.then(setHighlightedSourceMalloy)
// eslint-disable-next-line no-console
.catch(console.log);
Expand Down
2 changes: 1 addition & 1 deletion src/app/hooks/use_query_builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ interface UseQueryBuilderResult {
queryMalloy: {
model: string;
source: string;
notebook: string; // force rebuild
notebook: string;
markdown: string;
isRunnable: boolean;
};
Expand Down

0 comments on commit 91df191

Please sign in to comment.