diff options
author | Sunil Shetye | 2022-07-06 15:10:58 +0530 |
---|---|---|
committer | Sunil Shetye | 2022-07-06 15:11:29 +0530 |
commit | 7ab04c401cc376dec7e312e17835a545e6ac0b46 (patch) | |
tree | b4c147115283332f60575e7c6d7566975c2c4672 | |
parent | b97974a8bd5878653be317f20a4ae2ff4703f6dd (diff) | |
download | Common-Interface-Project-7ab04c401cc376dec7e312e17835a545e6ac0b46.tar.gz Common-Interface-Project-7ab04c401cc376dec7e312e17835a545e6ac0b46.tar.bz2 Common-Interface-Project-7ab04c401cc376dec7e312e17835a545e6ac0b46.zip |
rename Grid property from justify to justifyContent
6 files changed, 6 insertions, 6 deletions
diff --git a/blocks/eda-frontend/src/components/Dashboard/DashboardHome.js b/blocks/eda-frontend/src/components/Dashboard/DashboardHome.js index d1e56c4e..a77d8ff2 100644 --- a/blocks/eda-frontend/src/components/Dashboard/DashboardHome.js +++ b/blocks/eda-frontend/src/components/Dashboard/DashboardHome.js @@ -65,7 +65,7 @@ export default function DashboardHome () { <Grid container direction='row' - justify='flex-start' + justifyContent='flex-start' alignItems='flex-start' alignContent='center' spacing={3} diff --git a/blocks/eda-frontend/src/components/Dashboard/ProgressPanel.js b/blocks/eda-frontend/src/components/Dashboard/ProgressPanel.js index b5bb3634..8ae4ab9b 100644 --- a/blocks/eda-frontend/src/components/Dashboard/ProgressPanel.js +++ b/blocks/eda-frontend/src/components/Dashboard/ProgressPanel.js @@ -87,7 +87,7 @@ export default function ProgressPanel () { ? <Grid container direction='row' - justify='flex-start' + justifyContent='flex-start' alignItems='flex-start' alignContent='center' spacing={3} diff --git a/blocks/eda-frontend/src/components/Dashboard/SchematicsList.js b/blocks/eda-frontend/src/components/Dashboard/SchematicsList.js index b88cfb5c..6e480165 100644 --- a/blocks/eda-frontend/src/components/Dashboard/SchematicsList.js +++ b/blocks/eda-frontend/src/components/Dashboard/SchematicsList.js @@ -78,7 +78,7 @@ export default function SchematicsList () { <Grid container direction='row' - justify='flex-start' + justifyContent='flex-start' alignItems='flex-start' alignContent='center' spacing={3} diff --git a/blocks/eda-frontend/src/components/SchematicEditor/SimulationScreen.js b/blocks/eda-frontend/src/components/SchematicEditor/SimulationScreen.js index 23132d73..86ccf84a 100644 --- a/blocks/eda-frontend/src/components/SchematicEditor/SimulationScreen.js +++ b/blocks/eda-frontend/src/components/SchematicEditor/SimulationScreen.js @@ -701,7 +701,7 @@ export default function SimulationScreen ({ open, close }) { container spacing={3} direction='row' - justify='center' + justifyContent='center' alignItems='center' > {/* Card to display simulation result screen header */} diff --git a/blocks/eda-frontend/src/components/SchematicEditor/ToolbarExtension.js b/blocks/eda-frontend/src/components/SchematicEditor/ToolbarExtension.js index e6ae3756..4be2aa9d 100644 --- a/blocks/eda-frontend/src/components/SchematicEditor/ToolbarExtension.js +++ b/blocks/eda-frontend/src/components/SchematicEditor/ToolbarExtension.js @@ -146,7 +146,7 @@ export function HelpScreen ({ open, close }) { container spacing={3} direction='row' - justify='center' + justifyContent='center' alignItems='center' > diff --git a/blocks/eda-frontend/src/pages/Gallery.js b/blocks/eda-frontend/src/pages/Gallery.js index eb785b11..d0927269 100644 --- a/blocks/eda-frontend/src/pages/Gallery.js +++ b/blocks/eda-frontend/src/pages/Gallery.js @@ -121,7 +121,7 @@ export default function Gallery () { <Grid container direction='row' - justify='flex-start' + justifyContent='flex-start' alignItems='flex-start' alignContent='center' spacing={3} |