We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80c9735 commit 31227ebCopy full SHA for 31227eb
superset-frontend/src/components/Modal/StandardModal.tsx
@@ -41,7 +41,6 @@ interface StandardModalProps {
41
maskClosable?: boolean;
42
wrapProps?: object;
43
contentLoading?: boolean;
44
- resizable?: boolean;
45
}
46
47
// Standard modal widths
@@ -117,7 +116,6 @@ export function StandardModal({
117
116
maskClosable = false,
118
wrapProps,
119
contentLoading = false,
120
- resizable = false,
121
}: StandardModalProps) {
122
const primaryButtonName = saveText || (isEditMode ? t('Save') : t('Add'));
123
@@ -132,7 +130,6 @@ export function StandardModal({
132
130
show={show}
133
131
width={`${width}px`}
134
wrapProps={wrapProps}
135
- resizable={resizable}
136
centered={centered}
137
title={
138
icon ? (
0 commit comments