diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eb84397..a2208e28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ ### 🐞 Bug fixes +- Fixed the Expression editor (for long expressions) being able to be float under other components further down - Fixed an issue when clicking on a popup and then clicking on the map again - Fix modal close button possition - Fixed an issue with the generation of tranlations diff --git a/src/components/InputJson.tsx b/src/components/InputJson.tsx index 52a0e384..02e36c9f 100644 --- a/src/components/InputJson.tsx +++ b/src/components/InputJson.tsx @@ -10,7 +10,6 @@ import type { StylePropertySpecification } from "maplibre-gl"; export type InputJsonProps = { value: object - maxHeight?: number className?: string onChange(object: object): void onFocus?(...args: unknown[]): unknown @@ -115,16 +114,10 @@ class InputJsonInternal extends React.Component