RefreshPicker: Fix styling (#95739)
need to set clear borderRadius explicitly on ButtonSelect
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user