From eeaed64b0d8e36d9c15e715cdfc9e5d8bf95d6f2 Mon Sep 17 00:00:00 2001 From: Benson Lee Date: Wed, 4 Dec 2024 17:24:25 -0800 Subject: [PATCH 1/2] mention custom commit message --- docs/app/flows/NodeEditor.mdx | 7 +++++++ docs/app/tables/DataExplorer.mdx | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/app/flows/NodeEditor.mdx b/docs/app/flows/NodeEditor.mdx index 5d055835..a05a000e 100644 --- a/docs/app/flows/NodeEditor.mdx +++ b/docs/app/flows/NodeEditor.mdx @@ -244,9 +244,16 @@ You can save notebooks in a few ways: - Clicking the button in the upper right hand corner of the notebook. - Typing `Cmd+S` (Mac) or `Ctrl+S` (Windows/Linux) to save the pipeline cell(s). - Selecting the _Kernel_ menu and then selecting _Save Commit and Deploy_. +- In a cell, typing `save()` and then executing the cell. Executing any of these actions will lint the pipeline cell(s), and then commit and deploy the pipeline code to the workflow orchestrator. A pop-up will box will appear for each of these actions; lint warnings/errors will be displayed in the initial pop-up, and commit confirmation will be displayed on the second pop-up. +:::info custom commit message + +If you would like to submit a custom commit message, you can do so by typing `save(msg="Your custom commit message")` in a cell and executing it. + +::: + :::info A more detailed view of lint issues in pipeline cells can be observed by running `lint()` in a notebook cell. diff --git a/docs/app/tables/DataExplorer.mdx b/docs/app/tables/DataExplorer.mdx index 4a8b8759..30a67dad 100644 --- a/docs/app/tables/DataExplorer.mdx +++ b/docs/app/tables/DataExplorer.mdx @@ -14,7 +14,7 @@ The
**Data Explorer**< - The **Explorer** pane contains a list of tables in the current environment. - There is a search bar to filter the list to tables that contain the given search string. - - There is an button that lets you create a new table with a name and schema that you specify, using the [Table Structure Editor](#table-structure-editor). + - There is an button that lets you create a new table with a name and schema that you specify, using the [Table Structure Editor](#table-structure-editor). This can be useful for declaring the types in a table, rather than having to infer them from the data. - The rest of the window has various tabs that let you view or modify the selected table. - The **Fields** tab lets you view and edit the table structure (the defined columns of the table, aka schema) and other table metadata, including a description. From 19d00400ccc834487e964ffe24a24f08747b110e Mon Sep 17 00:00:00 2001 From: Benson Lee Date: Wed, 4 Dec 2024 17:29:17 -0800 Subject: [PATCH 2/2] upd --- docs/app/flows/NodeEditor.mdx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/docs/app/flows/NodeEditor.mdx b/docs/app/flows/NodeEditor.mdx index a05a000e..5d055835 100644 --- a/docs/app/flows/NodeEditor.mdx +++ b/docs/app/flows/NodeEditor.mdx @@ -244,16 +244,9 @@ You can save notebooks in a few ways: - Clicking the button in the upper right hand corner of the notebook. - Typing `Cmd+S` (Mac) or `Ctrl+S` (Windows/Linux) to save the pipeline cell(s). - Selecting the _Kernel_ menu and then selecting _Save Commit and Deploy_. -- In a cell, typing `save()` and then executing the cell. Executing any of these actions will lint the pipeline cell(s), and then commit and deploy the pipeline code to the workflow orchestrator. A pop-up will box will appear for each of these actions; lint warnings/errors will be displayed in the initial pop-up, and commit confirmation will be displayed on the second pop-up. -:::info custom commit message - -If you would like to submit a custom commit message, you can do so by typing `save(msg="Your custom commit message")` in a cell and executing it. - -::: - :::info A more detailed view of lint issues in pipeline cells can be observed by running `lint()` in a notebook cell.