check for null content in message translation card

This commit is contained in:
ggurdin 2024-10-23 10:10:49 -04:00
parent 7e9855dcc1
commit 5d190cc51e
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

View file

@ -144,14 +144,18 @@ class MessageTranslationCardState extends State<MessageTranslationCard> {
child: Column(
children: [
widget.selection != null
? Text(
selectionTranslation!,
style: BotStyle.text(context),
)
: Text(
repEvent!.text,
style: BotStyle.text(context),
),
? selectionTranslation != null
? Text(
selectionTranslation!,
style: BotStyle.text(context),
)
: const ToolbarContentLoadingIndicator()
: repEvent != null
? Text(
repEvent!.text,
style: BotStyle.text(context),
)
: const ToolbarContentLoadingIndicator(),
if (notGoingToTranslate && widget.selection == null)
InlineTooltip(
instructionsEnum: InstructionsEnum.l1Translation,