Skip to content

Commit

Permalink
Eliminated extra click from ArcticDB menu when less than 100 columns
Browse files Browse the repository at this point in the history
  • Loading branch information
aschonfeld committed Jun 27, 2023
1 parent 2bccb7c commit c51190f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ python_variables: &python_variables
CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
CODECOV_TOKEN: b0d35139-0a75-427a-907b-2c78a762f8f0
VERSION: 3.1.4
VERSION: 3.1.5
PANDOC_RELEASES_URL: https://github.com/jgm/pandoc/releases
python_formatting: &python_formatting
parallelism: 1
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Changelog

### 3.1.4 (2023-6-27)
### 3.1.5 (2023-6-27)
* Added support to `/dtale/data/` endpoint for ArcticDB instances hosted using gunicorn

### 3.1.0 (2023-6-23)
Expand Down
2 changes: 1 addition & 1 deletion docker/dtale.env
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION=3.1.4
VERSION=3.1.5
TZ=America/New_York
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
# built documents.
#
# The short X.Y version.
version = "3.1.4"
version = "3.1.5"
# The full version, including alpha/beta/rc tags.
release = "3.1.4"
release = "3.1.5"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 5 additions & 1 deletion frontend/static/dtale/info/DataViewerInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,11 @@ const DataViewerInfo: React.FC<DataViewerInfoProps & WithTranslation> = ({ colum
return (
<React.Fragment>
<div className="font-weight-bold d-inline-block">{t('ArcticDB')}:</div>
<div ref={arcticRef} className="pl-3 d-inline-block arctic-menu-toggle info-link" onClick={clickHandler}>
<div
ref={arcticRef}
className="pl-3 d-inline-block arctic-menu-toggle info-link"
onClick={reduxState.columnCount <= 100 ? arcticDBPopup : clickHandler}
>
<span>
<div className="d-inline-block info-link" style={{ maxWidth: 100, verticalAlign: 'bottom' }}>
<div className="resized" title={reduxState.arcticConn}>
Expand Down

0 comments on commit c51190f

Please sign in to comment.