Skip to content
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

fix(ui): fixed overflow issue on scrollbar list #17010

Merged
merged 5 commits into from
Feb 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,29 @@
## v2.0.0-beta.5 [unreleased]

### Features

1. [16991](https://github.com/influxdata/influxdb/pull/16991): Update Flux functions list for v0.61

### Bug Fixes

1. [16919](https://github.com/influxdata/influxdb/pull/16919): Sort dashboards on homepage alphabetically
1. [16934](https://github.com/influxdata/influxdb/pull/16934): Tokens page now sorts by status
1. [16931](https://github.com/influxdata/influxdb/pull/16931): Set the default value of tags in a Check
1. [16935](https://github.com/influxdata/influxdb/pull/16935): Fix sort by variable type
1. [16973](https://github.com/influxdata/influxdb/pull/16973): Calculate correct stacked line cumulative when lines are different lengths
1. [17010](https://github.com/influxdata/influxdb/pull/17010): Fixed scrollbar issue where resource cards would overflow the parent container rather than be hidden and scrollable
1. [16992](https://github.com/influxdata/influxdb/pull/16992): Query Builder now groups on column values, not tag values

## v2.0.0-beta.4 [2020-02-14]

### Features

1. [16855](https://github.com/influxdata/influxdb/pull/16855): Added labels to buckets in UI
1. [16842](https://github.com/influxdata/influxdb/pull/16842): Connect monaco editor to Flux LSP server
1. [16856](https://github.com/influxdata/influxdb/pull/16856): Update Flux to v0.59.6

### Bug Fixes

1. [16852](https://github.com/influxdata/influxdb/pull/16852): Revert for bad indexing of UserResourceMappings and Authorizations
1. [15911](https://github.com/influxdata/influxdb/pull/15911): Gauge no longer allowed to become too small
1. [16878](https://github.com/influxdata/influxdb/pull/16878): Fix issue with INFLUX_TOKEN env vars being overridden by default token
Expand Down
7 changes: 5 additions & 2 deletions ui/src/alerting/components/AlertingIndex.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

.alerting-index--column {
height: calc(100% - #{$ix-marg-d});
overflow: hidden;
}

.alert-column--empty {
Expand All @@ -16,6 +17,8 @@
.alerting-index--column-body {
flex: 1 0 0;
position: relative;
height: 90%;
padding-bottom: $ix-marg-d;
}

.alerting-index--list,
Expand Down Expand Up @@ -90,13 +93,13 @@
margin: 0;
padding-left: 0;
list-style: none;

.cf-icon {
display: inline-block;
margin-right: 5px;
width: 16px;
}

&.error {
color: $c-dreamsicle;
}
Expand Down
1 change: 0 additions & 1 deletion ui/src/alerting/components/AlertsColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ const AlertsColumnHeader: FC<Props> = ({
</div>
<div className="alerting-index--column-body">
<DapperScrollbars
autoSize={true}
autoHide={true}
style={{width: '100%', height: '100%'}}
>
Expand Down