fix refresh post modifica

This commit is contained in:
Samuele Locatelli
2023-06-15 14:52:35 +02:00
parent f000d4c026
commit 13fbeed6b6
7 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
<body>
<i>WebDoorCreator - Egalware</i>
<h4>Version: 0.9.2306.1419</h4>
<h4>Version: 0.9.2306.1514</h4>
<br /> Release note:
<ul>
<li>
+1 -1
View File
@@ -1 +1 @@
0.9.2306.1419
0.9.2306.1514
+1 -1
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<item>
<version>0.9.2306.1419</version>
<version>0.9.2306.1514</version>
<url>http://nexus.steamware.net/repository/SWS/WDC/stable/WDC.UI.zip</url>
<changelog>http://nexus.steamware.net/repository/SWS/WDC/stable/ChangeLog.html</changelog>
<mandatory>false</mandatory>
@@ -1146,11 +1146,11 @@ namespace WebDoorCreator.Data.Services
private int vetoRemoveProcSec { get; set; } = 10;
/// <summary>
/// Durata cache di 24h
/// Durata cache di 1 settimana
/// </summary>
private TimeSpan WeekLongCache
{
get => TimeSpan.FromHours(24 * 7);
get => TimeSpan.FromHours(24 * 7 * rnd.Next(1000, 1100) / 1000);
}
#endregion Private Properties
@@ -8,7 +8,7 @@
<div>
@if (!CurrDoor.Equals(CurrDoorClone))
{
<button class="btn btn-secondary" type="button" @onclick="()=>ReloadData()">Cancel <i class="fa-solid fa-xmark"></i></button>
<button class="btn btn-secondary" type="button" @onclick="()=>ReloadData()">Cancel <i class="fa-solid fa-rotate-left"></i></button>
<button class="btn btn-success" type="button" @onclick="()=>UpdateDoor(true)">Update <i class="fa-solid fa-check"></i></button>
}
</div>
@@ -85,7 +85,7 @@
</div>
<div class="pb-0 text-start">
<div class="input-group mb-3">
<button class="btn btn-danger" type="button" @onclick="()=>closeModal()">X CLOSE</button>
<button class="btn btn-outline-secondary" type="button" @onclick="()=>closeModal()">X CLOSE</button>
</div>
</div>
</div>
@@ -73,7 +73,7 @@ else
<span>@translate(item.Key)</span>
</div>
<select class="col-7" @bind="@dictValCurr[item.Key]" @onfocusout="isChangedVal">
<select class="col-7" @bind="@dictValCurr[item.Key]" @onfocus="isChangedVal">
@foreach (var param in comboSet(item.Key))
{
<option value="@param.Split("/")[0]">
@@ -89,7 +89,7 @@ else
<div class="col-4 d-flex flex-wrap align-items-center">
<span>@translate(item.Key)</span>
</div>
<input type="text" class="col-7" @bind="@dictValCurr[item.Key]" @onfocusout="isChangedVal" />
<input type="text" class="col-7" @bind="@dictValCurr[item.Key]" @onfocus="isChangedVal" />
</div>
}
}
+1 -1
View File
@@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<Version>0.9.2306.1419</Version>
<Version>0.9.2306.1514</Version>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>aspnet-WebDoorCreator.UI-dfe95fed-1398-4144-bd43-8b3a765d6608</UserSecretsId>
</PropertyGroup>