Skip to content

Commit

Permalink
Fix an error when running content table migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
engram-design committed Apr 10, 2024
1 parent 6957998 commit a055f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controllers/PluginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ public function actionCheckContentTables(): Response
}

$settings = Json::decode($superTableField['settings']);
$configSettings = $projectConfig->get($path);
$configSettings = $projectConfig->get($path) ?? [];
$configSettings = ProjectConfigHelper::unpackAssociativeArrays($configSettings);

if ($settings != $configSettings) {
Expand Down

0 comments on commit a055f32

Please sign in to comment.