mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-12-28 05:34:41 +00:00
fix: make retry work in ai generated images (#7993)
This commit is contained in:
parent
dc5f463e84
commit
4461c77992
@ -285,9 +285,14 @@ class _ImageLoadFailedWidget extends StatelessWidget {
|
||||
maxLines: 2,
|
||||
),
|
||||
const VSpace(12),
|
||||
OutlinedRoundedButton(
|
||||
text: LocaleKeys.chat_retry.tr(),
|
||||
onTap: onRetry,
|
||||
Listener(
|
||||
onPointerDown: (event) {
|
||||
onRetry();
|
||||
},
|
||||
child: OutlinedRoundedButton(
|
||||
text: LocaleKeys.chat_retry.tr(),
|
||||
onTap: () {},
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user