This is an automated email from the ASF dual-hosted git repository.
diegopucci pushed a commit to branch enxdev/refactor/antd5/create-wrappers
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to
refs/heads/enxdev/refactor/antd5/create-wrappers by this push:
new e8443d0613 chore(Antd): Fix Grid imports
e8443d0613 is described below
commit e8443d06139072539446fd659c9026d07127eb19
Author: Diego Pucci <[email protected]>
AuthorDate: Thu Mar 20 20:35:34 2025 +0200
chore(Antd): Fix Grid imports
---
superset-frontend/src/explore/components/controls/SpatialControl.jsx | 2 +-
superset-frontend/src/explore/components/controls/TextAreaControl.jsx | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/superset-frontend/src/explore/components/controls/SpatialControl.jsx
b/superset-frontend/src/explore/components/controls/SpatialControl.jsx
index db46e3eb46..ac21138454 100644
--- a/superset-frontend/src/explore/components/controls/SpatialControl.jsx
+++ b/superset-frontend/src/explore/components/controls/SpatialControl.jsx
@@ -18,7 +18,7 @@
*/
import { Component } from 'react';
import PropTypes from 'prop-types';
-import { Row, Col } from 'src/components';
+import { Row, Col } from 'src/components/Grid';
import { t } from '@superset-ui/core';
import Label from 'src/components/Label';
diff --git
a/superset-frontend/src/explore/components/controls/TextAreaControl.jsx
b/superset-frontend/src/explore/components/controls/TextAreaControl.jsx
index e8f165c8e1..940726eb04 100644
--- a/superset-frontend/src/explore/components/controls/TextAreaControl.jsx
+++ b/superset-frontend/src/explore/components/controls/TextAreaControl.jsx
@@ -18,7 +18,7 @@
*/
import { Component } from 'react';
import PropTypes from 'prop-types';
-import { TextArea } from 'src/components/Input';
+import { Input } from 'src/components/Input';
import {
Tooltip,
TooltipProps as TooltipOptions,
@@ -125,7 +125,7 @@ class TextAreaControl extends Component {
const textArea = (
<div>
- <TextArea
+ <Input.TextArea
placeholder={t('textarea')}
onChange={this.onControlChange.bind(this)}
defaultValue={this.props.initialValue}