Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Mar 20, 2024
1 parent 95470c7 commit 326f58c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,6 @@ export function PropertyValue({
onChange={(nextVal) => (isMultiSelect ? setValue(nextVal) : setValue(nextVal[0]))}
onInputChange={onSearchTextChange}
placeholder={placeholder}
dropdownProps={{
width: 'min-same',
}}
options={displayOptions.map(({ name: _name }, index) => {
const name = toString(_name)
return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ export function TaxonomicPopover<ValueType extends TaxonomicFilterValue = Taxono
excludedProperties={excludedProperties}
/>
}
width="min-same"
actionable
visible={visible}
onClickOutside={() => {
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/lib/lemon-ui/LemonButton/LemonButton.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ WithDropdownToTheBottom.args = {
</>
),
placement: 'bottom',
width: 'same',
},
}

Expand All @@ -403,6 +404,7 @@ WithVeryLongPopoverToTheBottom.args = {
</>
),
placement: 'bottom',
width: 'same',
},
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export function PathsEventsTypes({ insightProps }: EditorFilterProps): JSX.Eleme
fullWidth
type="secondary"
dropdown={{
width: 'same',
closeOnClickInside: false,
overlay: options.map((option) => (
<LemonButton
Expand Down

0 comments on commit 326f58c

Please sign in to comment.