revert tel:link

This commit is contained in:
Frede Hundewadt 2022-12-30 06:55:19 +01:00
parent 3dd4a2fc61
commit b4fa8475d1
5 changed files with 7 additions and 6 deletions

View file

@ -52,7 +52,7 @@
@company.Account @company.Account
</td> </td>
<td class="align-middle"> <td class="align-middle">
@company.Phone @company.Phone
</td> </td>
<td class="align-middle"> <td class="align-middle">
@company.City @company.City

View file

@ -169,7 +169,7 @@
<label for="contacts" class="col-sm-1 col-form-label-sm">Kontakt</label> <label for="contacts" class="col-sm-1 col-form-label-sm">Kontakt</label>
<div id="contacts" class="col-sm-11"> <div id="contacts" class="col-sm-11">
<div class="list-group"> <div class="list-group">
<div class="list-group-item list-group-item-action bg-dark text-white" @onclick="() => OpenContactPopup(DefaultContact)"> <div class="list-group-item list-group-item-action bg-dark text-white" @onclick="() => OpenContactPopup(DefaultContact)">
<div class="row"> <div class="row">
<div class="col-sm-4">Stilling</div> <div class="col-sm-4">Stilling</div>
<div class="col-sm-4">Navn</div> <div class="col-sm-4">Navn</div>
@ -187,7 +187,9 @@
<div class="row g-2"> <div class="row g-2">
<div class="col-sm-4">@contact.JobTitle</div> <div class="col-sm-4">@contact.JobTitle</div>
<div class="col-sm-4">@contact.FirstName @contact.LastName</div> <div class="col-sm-4">@contact.FirstName @contact.LastName</div>
<div class="col-sm-3">@contact.PhoneDirect</div> <div class="col-sm-3">
@contact.PhoneDirect
</div>
<div class="col-sm-1 text-end"> <div class="col-sm-1 text-end">
<i class="bi-pencil"></i> <i class="bi-pencil"></i>
</div> </div>

View file

@ -35,7 +35,6 @@ public partial class OrderViewWarehousePage : IDisposable
[Inject] public ILogger<OrderViewWarehousePage> _logger { get; set; } [Inject] public ILogger<OrderViewWarehousePage> _logger { get; set; }
private WarehouseOrderView _order { get; set; } = new(); private WarehouseOrderView _order { get; set; } = new();
private bool Loading { get; set; }
private bool Working { get; set; } private bool Working { get; set; }
protected override async Task OnParametersSetAsync() protected override async Task OnParametersSetAsync()

View file

@ -27,14 +27,14 @@ using Wonky.Entity.Views;
namespace Wonky.Client.Pages; namespace Wonky.Client.Pages;
public partial class ReportNewCrmPage : IDisposable public partial class ReportCreateCrmPage : IDisposable
{ {
[Inject] public HttpInterceptorService Interceptor { get; set; } [Inject] public HttpInterceptorService Interceptor { get; set; }
[Inject] public UserProfileService ProfileService { get; set; } [Inject] public UserProfileService ProfileService { get; set; }
[Inject] public ICrmActivityHttpRepository CrmActivityRepo { get; set; } [Inject] public ICrmActivityHttpRepository CrmActivityRepo { get; set; }
[Inject] public ICrmReportHttpRepository CrmReportRepo { get; set; } [Inject] public ICrmReportHttpRepository CrmReportRepo { get; set; }
[Inject] public NavigationManager Navigator { get; set; } [Inject] public NavigationManager Navigator { get; set; }
[Inject] public ILogger<ReportNewCrmPage> Logger { get; set; } [Inject] public ILogger<ReportCreateCrmPage> Logger { get; set; }
[Inject] public IToastService Toaster { get; set; } [Inject] public IToastService Toaster { get; set; }
private EditContext ReportContext { get; set; } private EditContext ReportContext { get; set; }
private ReportDto Report { get; set; } = new(); private ReportDto Report { get; set; } = new();