Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/constants/notebooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

export const NOTEBOOKS_API_PREFIX = '/api/observability/notebooks';
export const NOTEBOOKS_SELECTED_BACKEND: 'ZEPPELIN' | 'DEFAULT' = 'DEFAULT';
export const NOTEBOOKS_SELECTED_BACKEND = 'DEFAULT';
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can remove this constant if not used anywhere.

export const NOTEBOOKS_FETCH_SIZE = 1000;
export const CREATE_NOTE_MESSAGE = 'Enter a name to describe the purpose of this notebook.';
export const NOTEBOOKS_DOCUMENTATION_URL =
Expand Down

This file was deleted.

8 changes: 1 addition & 7 deletions public/components/notebooks/components/notebook.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ import {
contextMenuViewReports,
generateInContextReport,
} from './helpers/reporting_context_menu_helper';
import { zeppelinParagraphParser } from './helpers/zeppelin_parser';
import { Paragraphs } from './paragraph_components/paragraphs';
const panelStyles: CSS.Properties = {
float: 'left',
Expand Down Expand Up @@ -140,12 +139,7 @@ export class Notebook extends Component<NotebookProps, NotebookState> {
try {
let parsedPara;
// @ts-ignore
if (NOTEBOOKS_SELECTED_BACKEND === 'ZEPPELIN') {
parsedPara = zeppelinParagraphParser(paragraphs);
this.setState({ vizPrefix: '%sh #vizobject:' });
} else {
parsedPara = defaultParagraphParser(paragraphs);
}
parsedPara = defaultParagraphParser(paragraphs);
parsedPara.forEach((para: ParaType) => {
para.isInputExpanded = this.state.selectedViewId === 'input_only';
para.paraRef = React.createRef();
Expand Down
129 changes: 0 additions & 129 deletions public/components/notebooks/docs/dev/Zeppelin_backend_adaptor.md

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

Loading