Skip to content

Commit

Permalink
fixed dText parsing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
clragon committed Apr 14, 2020
1 parent b0ddf2a commit 06145ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ class PoolPreview extends StatelessWidget {
),
renderText: ({String str, String pattern}) {
String display = str;
display = display.replaceAll('[i]', '');
display = display.replaceAll('[/i]', '');
display = display.replaceAll('[s]', '');
display = display.replaceAll('[/s]', '');
Map<String, String> map = Map<String, String>();
map['display'] = display;
map['value'] = str;
Expand Down

0 comments on commit 06145ce

Please sign in to comment.