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
207
207
# Change directory to the jupyterlab-git directory
208
208
cd jupyterlab-git
209
209
# Install package in development mode
210
- pip install -e .[dev]
210
+ pip install -e " .[dev]"
211
211
pre-commit install
212
212
# Link your development version of the extension with JupyterLab
213
213
jupyter labextension develop . --overwrite
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export class GitCloneForm extends Widget {
17
17
* Returns the input value.
18
18
*/
19
19
getValue ( ) : string {
20
- return encodeURIComponent ( this . node . querySelector ( 'input' ) . value ) ;
20
+ return encodeURIComponent ( this . node . querySelector ( 'input' ) . value . trim ( ) ) ;
21
21
}
22
22
23
23
private static createFormNode ( trans : TranslationBundle ) : HTMLElement {
You can’t perform that action at this time.
0 commit comments