Skip to content

Commit 7b7f0e5

Browse files
authored
Hide overflow on focus (#792)
* Bump to 0.22.0 * Update .gif * Fix overflow when clicking on the latest file in history
1 parent d1f9f4b commit 7b7f0e5

File tree

8 files changed

+6
-4
lines changed

8 files changed

+6
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
A JupyterLab extension for version control using Git
88

9-
![ui_glow_up](./docs/figs/demo-0-10-0.gif)
9+
![ui_glow_up](./docs/figs/preview.gif)
1010

1111
To see the extension in action, open the example notebook included in the Binder [demo](https://mybinder.org/v2/gh/jupyterlab/jupyterlab-git/master?urlpath=lab/tree/examples/demo.ipynb).
1212

docs/figs/demo-0-10-0.gif

-3.61 MB
Binary file not shown.

docs/figs/nbdiff.gif

-14.4 MB
Binary file not shown.

docs/figs/preview.gif

2.67 MB
Loading

jupyterlab_git/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
# Distributed under the terms of the Modified BSD License.
33

44
version_info = (0, 22, 0)
5-
flag = "a0"
5+
flag = ""
66

77
__version__ = ".".join(map(str, version_info)) + flag

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlab/git",
3-
"version": "0.22.0-alpha.0",
3+
"version": "0.22.0",
44
"description": "A JupyterLab extension for version control using git",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

src/components/SinglePastCommitInfo.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { fileIcon } from '@jupyterlab/ui-components';
22
import { CommandRegistry } from '@lumino/commands';
33
import * as React from 'react';
44
import { FixedSizeList, ListChildComponentProps } from 'react-window';
5-
import { classes } from 'typestyle/';
5+
import { classes } from 'typestyle';
66
import { CommandIDs } from '../commandsAndMenu';
77
import { LoggerContext } from '../logger';
88
import { GitExtension } from '../model';

src/style/SinglePastCommitInfo.ts

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ export const commitDetailFileClass = style({
4343
lineHeight: 'var(--jp-private-running-item-height)',
4444
whiteSpace: 'nowrap',
4545

46+
overflow: 'hidden',
47+
4648
$nest: {
4749
'&:hover': {
4850
backgroundColor: 'var(--jp-layout-color2)'

0 commit comments

Comments
 (0)