From f25902214f2463701e4d7e8fe4fe8860fd436a2e Mon Sep 17 00:00:00 2001 From: Germs2004 <5519340+Germs2004@users.noreply.github.com> Date: Sun, 3 May 2020 14:25:27 -0400 Subject: [PATCH] Change ellipsis to dash (#826) An ellipsis in software often implies that the element is clickable to get more information. Changing that to a simple dash symbol makes it more clear that the value is simply undefined and is not a clickable element. --- views/choresoverview.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/choresoverview.blade.php b/views/choresoverview.blade.php index 0edb7679..d83a80c9 100644 --- a/views/choresoverview.blade.php +++ b/views/choresoverview.blade.php @@ -125,7 +125,7 @@ {{ $curentChoreEntry->next_estimated_execution_time }} @else - ... + - @endif @@ -138,7 +138,7 @@ @if(!empty($curentChoreEntry->next_execution_assigned_to_user_id)) {{ FindObjectInArrayByPropertyValue($users, 'id', $curentChoreEntry->next_execution_assigned_to_user_id)->display_name }} @else - ... + - @endif