| if (ResponseStatus.Error == responseStatus) { | if (ResponseStatus.Error == responseStatus) { | ||||
| <div class="row no-gutters align-items-end justify-content-center w-100" style="padding-bottom:2em;padding-top:2em"> | <div class="row no-gutters align-items-end justify-content-center w-100" style="padding-bottom:2em;padding-top:2em"> | ||||
| <div class="col" style="padding-right:0.5em"> | <div class="col" style="padding-right:0.5em"> | ||||
| <MatButton Class="w-100" Outlined="true" @onclick="EditData">@I18n["EditData"]</MatButton> | |||||
| <MatButton Class="w-100" Outlined="true" @onclick="EditData" Style="padding-left: 3px; padding-right: 3px">@I18n["EditData"]</MatButton> | |||||
| </div> | </div> | ||||
| <div class="col" style="padding-left:0.5em"> | <div class="col" style="padding-left:0.5em"> | ||||
| <MatButton Class="w-100" Raised="true" @onclick="Cancel">@I18n["Cancel"]</MatButton> | <MatButton Class="w-100" Raised="true" @onclick="Cancel">@I18n["Cancel"]</MatButton> | ||||
| } | } | ||||
| private void Cancel() { | private void Cancel() { | ||||
| NavigationManager.NavigateTo("caritas_services"); | |||||
| Finished(); | |||||
| } | } | ||||
| private void EditData() { | private void EditData() { | ||||
| NavigationManager.NavigateTo("/fundvelo/keydata/Found"); | |||||
| NavigationManager.NavigateTo("fundvelo/keydata/Found"); | |||||
| } | } | ||||
| } | } |
| if (ResponseStatus.Error == responseStatus) { | if (ResponseStatus.Error == responseStatus) { | ||||
| <div class="row no-gutters align-items-end justify-content-center w-100" style="padding-bottom:2em;padding-top:2em"> | <div class="row no-gutters align-items-end justify-content-center w-100" style="padding-bottom:2em;padding-top:2em"> | ||||
| <div class="col" style="padding-right:0.5em"> | <div class="col" style="padding-right:0.5em"> | ||||
| <MatButton Class="w-100" Outlined="true" @onclick="EditData">@I18n["EditData"]</MatButton> | |||||
| <MatButton Class="w-100" Outlined="true" @onclick="EditData" Style="padding-left: 3px; padding-right: 3px">@I18n["EditData"]</MatButton> | |||||
| </div> | </div> | ||||
| <div class="col" style="padding-left:0.5em"> | <div class="col" style="padding-left:0.5em"> | ||||
| <MatButton Class="w-100" Raised="true" @onclick="Cancel">@I18n["Cancel"]</MatButton> | <MatButton Class="w-100" Raised="true" @onclick="Cancel">@I18n["Cancel"]</MatButton> | ||||
| } | } | ||||
| private void EditData() { | private void EditData() { | ||||
| NavigationManager.NavigateTo("/fundvelo/keydata/Missing"); | |||||
| NavigationManager.NavigateTo("fundvelo/keydata/Missing"); | |||||
| } | } | ||||
| } | } |
| <PropertyGroup> | <PropertyGroup> | ||||
| <TargetFramework>net5.0</TargetFramework> | <TargetFramework>net5.0</TargetFramework> | ||||
| <ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest> | <ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest> | ||||
| <Version>0.9.1</Version> | |||||
| <Version>0.9.3</Version> | |||||
| </PropertyGroup> | </PropertyGroup> | ||||
| <ItemGroup> | <ItemGroup> |
| // This is because caching would make development more difficult (changes would not | // This is because caching would make development more difficult (changes would not | ||||
| // be reflected on the first load after each change). | // be reflected on the first load after each change). | ||||
| const staticCacheName = 'site-static-v-0-9-1'; // IMPORTANT: CHANGE THE VERSION IN THIS NAME EVERY TIME THE APP IS DEPLOYED ON SERVER WITH CHANGES!!! | |||||
| const staticCacheName = 'site-static-v-0-9-3'; // IMPORTANT: CHANGE THE VERSION IN THIS NAME EVERY TIME THE APP IS DEPLOYED ON SERVER WITH CHANGES!!! | |||||
| const appsettings_url = 'appsettings.json'; | const appsettings_url = 'appsettings.json'; | ||||
| const assets = [ | const assets = [ | ||||
| './', | './', |