Skip to content

Commit f7911e2

Browse files
committed
Fix static checks
1 parent 1dbff25 commit f7911e2

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

airflow-core/src/airflow/ui/src/components/DisplayMarkdownButton.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ import { ResizableWrapper, MARKDOWN_DIALOG_STORAGE_KEY } from "src/components/ui
2424

2525
import ReactMarkdown from "./ReactMarkdown";
2626

27-
2827
const DisplayMarkdownButton = ({
2928
header,
3029
icon,

airflow-core/src/airflow/ui/src/components/EditableMarkdownArea.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ const EditableMarkdownArea = ({
4343
}
4444

4545
return (
46-
<Box p={4} width="100%" height="100%">
46+
<Box height="100%" p={4} width="100%">
4747
<Editable.Root
48+
height="100%"
4849
onBlur={onBlur}
4950
onChange={(event: ChangeEvent<HTMLInputElement>) => {
5051
const { value } = event.target;
@@ -53,7 +54,6 @@ const EditableMarkdownArea = ({
5354
setMdContent(value);
5455
}}
5556
value={currentValue}
56-
height="100%"
5757
>
5858
<Editable.Preview
5959
_hover={{ backgroundColor: "transparent" }}

airflow-core/src/airflow/ui/src/components/EditableMarkdownButton.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import { ResizableWrapper, MARKDOWN_DIALOG_STORAGE_KEY } from "src/components/ui
2727
import EditableMarkdownArea from "./EditableMarkdownArea";
2828
import ActionButton from "./ui/ActionButton";
2929

30-
3130
const EditableMarkdownButton = ({
3231
header,
3332
isPending,

0 commit comments

Comments
 (0)