mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00
Fix Info example emoji problem
The emojis that previously were used, used Unicode combinators which are not fully supported. Changing to :thumbs_up: and :thumbs_down: instead.
This commit is contained in:
parent
7d6104ace4
commit
df291ef84e
@ -20,6 +20,8 @@ namespace Info
|
||||
.SetHeader("Information"));
|
||||
}
|
||||
|
||||
private static string GetEmoji(bool value) => value ? ":check_mark_button:" : ":cross_mark:";
|
||||
private static string GetEmoji(bool value) => value
|
||||
? ":thumbs_up:"
|
||||
: ":thumbs_down:";
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user