style(ui): polish islands and remove terminal traffic-light dots
This commit is contained in:
@@ -130,10 +130,7 @@ public sealed partial class TasksIslandViewModel : ViewModelBase
|
||||
var running = Items.Count(i => i.Status == TaskStatus.Running);
|
||||
var review = Items.Count(i => i.Status == TaskStatus.Done && i.Branch != null);
|
||||
|
||||
var weekday = now.ToString("dddd", CultureInfo.CurrentCulture);
|
||||
var month = now.ToString("MMM", CultureInfo.CurrentCulture);
|
||||
var day = now.Day;
|
||||
Subtitle = $"{weekday}, {month} {day} · {open} open";
|
||||
Subtitle = open == 1 ? "1 open task" : $"{open} open tasks";
|
||||
|
||||
if (running > 0 || review > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user