Skip to content

Commit

Permalink
fix(ui): fixed overflow issue on scrollbar list (#17010)
Browse files Browse the repository at this point in the history
fix(ui): fixed overflow issue on scrollbar list
  • Loading branch information
asalem1 authored Feb 25, 2020
1 parent 32cca72 commit c225be8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,30 @@
## v2.0.0-beta.5 [unreleased]

### Features

1. [16991](https://github.com/influxdata/influxdb/pull/16991): Update Flux functions list for v0.61
1. [16574](https://github.com/influxdata/influxdb/pull/16574): Add secure flag to session cookie

### 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

0 comments on commit c225be8

Please sign in to comment.