You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/auto_completion_node_widget.dart
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -142,7 +142,7 @@ class _AutoCompletionInputState extends State<_AutoCompletionInput> {
142
142
TextSpan(
143
143
children: [
144
144
TextSpan(
145
-
text:'${LocaleKeys.button_generate.tr()} ',
145
+
text:LocaleKeys.button_generate.tr(),
146
146
style:Theme.of(context).textTheme.bodyMedium,
147
147
),
148
148
],
@@ -154,7 +154,7 @@ class _AutoCompletionInputState extends State<_AutoCompletionInput> {
Copy file name to clipboardExpand all lines: frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_node_widget.dart
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -162,7 +162,7 @@ class _SmartEditInputState extends State<_SmartEditInput> {
162
162
TextSpan(
163
163
children: [
164
164
TextSpan(
165
-
text:'${LocaleKeys.button_replace.tr()} ',
165
+
text:LocaleKeys.button_replace.tr(),
166
166
style:Theme.of(context).textTheme.bodyMedium,
167
167
),
168
168
],
@@ -177,7 +177,7 @@ class _SmartEditInputState extends State<_SmartEditInput> {
Copy file name to clipboardExpand all lines: frontend/appflowy_flutter/lib/plugins/document/presentation/plugins/openai/widgets/smart_edit_toolbar_item.dart
0 commit comments