Commit d16f04f 1 parent e9b464b commit d16f04f Copy full SHA for d16f04f
File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import PropertiesEditor from '../../PropertiesEditor';
7
7
import propertiesMapToSchema from '../../PropertiesEditor/PropertiesMapToSchema' ;
8
8
import EmptyMessage from '../../UI/EmptyMessage' ;
9
9
import { type EditorProps } from './EditorProps.flow' ;
10
- import { Column , Line } from '../../UI/Grid' ;
10
+ import { Line } from '../../UI/Grid' ;
11
11
import { getExtraObjectsInformation } from '../../Hints' ;
12
12
import { getObjectTutorialIds } from '../../Utils/GDevelopServices/Tutorial' ;
13
13
import AlertMessage from '../../UI/AlertMessage' ;
@@ -62,13 +62,13 @@ const ObjectPropertiesEditor = (props: Props) => {
62
62
< React . Fragment >
63
63
{ extraInformation ? (
64
64
< Line >
65
- < Column noMargin >
65
+ < ColumnStackLayout noMargin >
66
66
{ extraInformation . map ( ( { kind, message } , index ) => (
67
67
< AlertMessage kind = { kind } key = { index } >
68
68
{ i18n . _ ( message ) }
69
69
</ AlertMessage >
70
70
) ) }
71
- </ Column >
71
+ </ ColumnStackLayout >
72
72
</ Line >
73
73
) : null }
74
74
< PropertiesEditor
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const AlertMessage = ({
39
39
const gdevelopTheme = React . useContext ( GDevelopThemeContext ) ;
40
40
41
41
return (
42
- < Paper elevation = { 10 } square >
42
+ < Paper variant = "outlined" >
43
43
< Column expand >
44
44
< ResponsiveLineStackLayout
45
45
alignItems = "center"
You can’t perform that action at this time.
0 commit comments