diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2023-10-26 16:10:49 +0200 |
---|---|---|
committer | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2023-11-06 15:26:16 +0100 |
commit | 2aab6bd2096fc83912182704ad70c25954396457 (patch) | |
tree | 3bd1d8dddaf2ecf53755d291077b989c830647f3 /core/Command | |
parent | 802da2b801c6b3c02bfcbb816316cf39e556911b (diff) | |
download | nextcloud-server-2aab6bd2096fc83912182704ad70c25954396457.tar.gz nextcloud-server-2aab6bd2096fc83912182704ad70c25954396457.zip |
Fix icon for errors to be consistent with the others
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/SetupChecks.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/SetupChecks.php b/core/Command/SetupChecks.php index e64f7a5058e..d266b62a0f2 100644 --- a/core/Command/SetupChecks.php +++ b/core/Command/SetupChecks.php @@ -63,7 +63,7 @@ class SetupChecks extends Base { }; $emoji = match ($check->getSeverity()) { 'success' => '✓', - 'error' => '❌', + 'error' => '✗', 'warning' => '⚠', default => 'ℹ', }; |