Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Rocket-admin/rocketadmin
Browse files Browse the repository at this point in the history
  • Loading branch information
lyubov-voloshko committed Aug 30, 2023
2 parents 0430ef6 + 3161114 commit b09bda7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class FindTableActionsUseCase
const formedTableActionsDS = foundTableActions.map((action) => buildCreatedTableActionDS(action));
return {
table_name: tableName,
display_name: foundTableSettings.display_name,
display_name: foundTableSettings?.display_name ? foundTableSettings.display_name : null,
table_actions: formedTableActionsDS,
};
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"#important to keep it /api for prod": true,
"baseURL": "/api"
"baseURL": "https://app.rocketadmin.com/api"
}

0 comments on commit b09bda7

Please sign in to comment.