added missing supervisor check

This commit is contained in:
Frede Hundewadt 2022-10-18 18:52:00 +02:00
parent 2509549827
commit baf24a12cc
3 changed files with 5 additions and 1 deletions

View file

@ -65,6 +65,9 @@
case "Leave": case "Leave":
<span>Ferie</span> <span>Ferie</span>
break; break;
case "Supervisor":
<span>Supervisor</span>
break;
} }
} }
</div> </div>

View file

@ -44,6 +44,7 @@ public partial class CrmCompanyActivityListPage : IDisposable
Company = await CompanyRepo.GetCompanyById(CompanyId); Company = await CompanyRepo.GetCompanyById(CompanyId);
Activities = await CrmActivityRepo.GetCustomerActivities(CompanyId); Activities = await CrmActivityRepo.GetCustomerActivities(CompanyId);
Activities = Activities.OrderByDescending(x => x.OrderDate).ToList();
Working = false; Working = false;
} }

View file

@ -1,7 +1,7 @@
{ {
"appInfo": { "appInfo": {
"name": "Wonky Client", "name": "Wonky Client",
"version": "0.29.1", "version": "0.29.2",
"rc": false, "rc": false,
"sandBox": false, "sandBox": false,
"image": "grumpy-coder.png" "image": "grumpy-coder.png"