RefreshPicker: Fix styling (#95739)

need to set clear borderRadius explicitly on ButtonSelect
This commit is contained in:
Ashley Harrison
2024-11-04 10:00:12 +00:00
committed by GitHub
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}