We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b6bd27 commit e99df53Copy full SHA for e99df53
lib/entity_details/view/entity_details_page.dart
@@ -150,7 +150,9 @@ class _EntityDetailsViewState extends State<EntityDetailsView> {
150
151
if (state.status == EntityDetailsStatus.failure && state.entity == null) {
152
return FailureStateWidget(
153
- message: state.errorMessage ?? l10n.entityDetailsErrorLoading(entityType: entityTypeDisplayNameForTitle),
+ //TODO(fulleni): add entityDetailsErrorLoadingto l10n
154
+ // message: state.errorMessage ?? l10n.entityDetailsErrorLoading(entityType: entityTypeDisplayNameForTitle),
155
+ message: state.errorMessage ?? '...',
156
onRetry: () => context.read<EntityDetailsBloc>().add(
157
EntityDetailsLoadRequested(
158
entityId: widget.args.entityId,
0 commit comments