File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ git clone https://github.com/jupyterlab/jupyterlab-git.git
207207# Change directory to the jupyterlab-git directory
208208cd jupyterlab-git
209209# Install package in development mode
210- pip install -e .[dev]
210+ pip install -e " .[dev]"
211211pre-commit install
212212# Link your development version of the extension with JupyterLab
213213jupyter labextension develop . --overwrite
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export class GitCloneForm extends Widget {
1717 * Returns the input value.
1818 */
1919 getValue ( ) : string {
20- return encodeURIComponent ( this . node . querySelector ( 'input' ) . value ) ;
20+ return encodeURIComponent ( this . node . querySelector ( 'input' ) . value . trim ( ) ) ;
2121 }
2222
2323 private static createFormNode ( trans : TranslationBundle ) : HTMLElement {
You can’t perform that action at this time.
0 commit comments