Skip to content

Commit

Permalink
fix: correct gs export order prop warning
Browse files Browse the repository at this point in the history
  • Loading branch information
evan361425 committed Aug 13, 2023
1 parent d4cdac5 commit 81d9fd7
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions lib/ui/exporter/google_sheet_widgets/order_properties_modal.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,10 @@ class _OrderPropertiesModalState extends State<OrderPropertiesModal>
}
},
),
if (!isOverwrite && !withPrefix)
const CardInfoText(
child: Row(children: [
Icon(Icons.warning_amber_sharp),
SizedBox(width: 8.0),
Text('不覆寫而改用附加的時候,建議標單名稱「不要」加上日期前綴'),
]),
if (!isOverwrite && withPrefix)
const Padding(
padding: EdgeInsets.all(8.0),
child: Text('不覆寫而改用附加的時候,建議表單名稱「不要」加上日期前綴'),
),
const TextDivider(label: '表單名稱'),
const Padding(
Expand Down

0 comments on commit 81d9fd7

Please sign in to comment.