mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
RefreshPicker: Fix styling (#95739)
need to set clear borderRadius explicitly on ButtonSelect
This commit is contained in:
parent
fe6ec1258f
commit
7fd4f220b8
@ -1,3 +1,4 @@
|
||||
import { css } from '@emotion/css';
|
||||
import { formatDuration } from 'date-fns';
|
||||
import { PureComponent } from 'react';
|
||||
|
||||
@ -116,6 +117,10 @@ export class RefreshPicker extends PureComponent<Props> {
|
||||
</ToolbarButton>
|
||||
{!noIntervalPicker && (
|
||||
<ButtonSelect
|
||||
className={css({
|
||||
borderTopLeftRadius: 0,
|
||||
borderBottomLeftRadius: 0,
|
||||
})}
|
||||
value={selectedValue}
|
||||
options={options}
|
||||
onChange={this.onChangeSelect}
|
||||
|
Loading…
Reference in New Issue
Block a user