Skip to content

Commit

Permalink
Merge pull request #392 from rocket-admin/backend_microservices
Browse files Browse the repository at this point in the history
table actions fix
  • Loading branch information
Artuomka authored Aug 28, 2023
2 parents 81026d1 + 9458968 commit 3161114
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 3161114

Please sign in to comment.