-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Minor changes to dispatchers (action creators will dispatch multiple actions) #9920
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minor changes to dispatchers (action creators will dispatch multiple actions) #9920
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🕐
Codecov Report
@@ Coverage Diff @@
## ds/custom_editor #9920 +/- ##
=====================================================
+ Coverage 0% 60.78% +60.78%
=====================================================
Files 10 564 +554
Lines 31 29882 +29851
Branches 4 4492 +4488
=====================================================
+ Hits 0 18165 +18165
- Misses 31 10722 +10691
- Partials 0 995 +995
Continue to review full report at Codecov.
|
df0563a
to
0b904af
Compare
* ds/custom_editor: (44 commits) Implement undo support for the custom editor (#9946) Change cursor style of buttons to pointer (#9989) Command to select a kernel for a Notebook (#9988) Make error lines match the original file (#9984) Display commands when necessary (#9986) add the ip argument of jupyter server for k8s container (#9977) When starting Jupyter activate conda env (#9972) Make the interactive window wrap like the native editor does (#9966) Disables the use of a terminal to activate an environment (#9967) Add tests (excluding smoke) to CI GitHub Action (#9924) fix kernel and server labels when not connected (#9965) Be more clear about the virtual environment activation instructions Update bug report template (#9957) Do not override kernels info in other notebooks (#9958) Update instructions for creating the release branch Notebook should use kernel from metadata (#9936) Disable the terminal activation experiment (#9937) Fix variable explorer when restarting a kernel (#9931) Use the autoStart server if it matches when starting a new server (#9929) Capitalize Activate.ps1 (#9911) ...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@@ -502,6 +502,7 @@ export class IInteractiveWindowMapping { | |||
public [InteractiveWindowMessages.NotebookRunAllCells]: never | undefined; | |||
public [InteractiveWindowMessages.NotebookRunSelectedCell]: never | undefined; | |||
public [InteractiveWindowMessages.NotebookAddCellBelow]: IAddCellAction; | |||
public [CommonActionType.FOCUS_CELL]: ICellAndCursorAction; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You shouldn't need this anymore, right? It's not an interactive window message
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still used.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its not an interactive window message, but used in the mapping.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't there another mapping for common action types? Seems like this is polluting the interactive window side stuff.
In reply to: 376673396 [](ancestors = 376673396)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, I'll move it out in a separate PR.
* ds/custom_editor: Fix func test in DS failing due to FS issues (#9995)
Kudos, SonarCloud Quality Gate passed!
|
For #9898
For #9102
a
andb
keys, old approach resulted ina
andb
being typed into the new cell that was created as a resultclassName
was not a string but an object.