fix(datepicker): Full width datepicker on filter value select (#32064)

This commit is contained in:
Mehmet Salih Yavuz
2025-02-03 18:51:05 +03:00
committed by GitHub
parent 9e5876dc17
commit cde2d49c95
2 changed files with 10 additions and 6 deletions

View File

@@ -23,7 +23,6 @@ import {
parseDttmToDate,
BinaryAdhocFilter,
SimpleAdhocFilter,
css,
customTimeRangeDecode,
computeCustomDateTime,
fetchTimeRange,
@@ -223,9 +222,6 @@ export default function TimeOffsetControls({
<div>
<ControlHeader {...props} />
<DatePicker
css={css`
width: 100%;
`}
onChange={(datetime: Dayjs) =>
onChange(datetime ? datetime.format(DAYJS_FORMAT) : '')
}