| @@ -54,7 +54,7 @@ | |||
| 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="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 class="col" style="padding-left:0.5em"> | |||
| <MatButton Class="w-100" Raised="true" @onclick="Cancel">@I18n["Cancel"]</MatButton> | |||
| @@ -119,11 +119,11 @@ | |||
| } | |||
| private void Cancel() { | |||
| NavigationManager.NavigateTo("caritas_services"); | |||
| Finished(); | |||
| } | |||
| private void EditData() { | |||
| NavigationManager.NavigateTo("/fundvelo/keydata/Found"); | |||
| NavigationManager.NavigateTo("fundvelo/keydata/Found"); | |||
| } | |||
| } | |||
| @@ -85,7 +85,7 @@ | |||
| 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="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 class="col" style="padding-left:0.5em"> | |||
| <MatButton Class="w-100" Raised="true" @onclick="Cancel">@I18n["Cancel"]</MatButton> | |||
| @@ -151,7 +151,7 @@ | |||
| } | |||
| private void EditData() { | |||
| NavigationManager.NavigateTo("/fundvelo/keydata/Missing"); | |||
| NavigationManager.NavigateTo("fundvelo/keydata/Missing"); | |||
| } | |||
| } | |||
| @@ -10,7 +10,7 @@ | |||
| <PropertyGroup> | |||
| <TargetFramework>net5.0</TargetFramework> | |||
| <ServiceWorkerAssetsManifest>service-worker-assets.js</ServiceWorkerAssetsManifest> | |||
| <Version>0.9.1</Version> | |||
| <Version>0.9.3</Version> | |||
| </PropertyGroup> | |||
| <ItemGroup> | |||
| @@ -2,7 +2,7 @@ | |||
| // This is because caching would make development more difficult (changes would not | |||
| // 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 assets = [ | |||
| './', | |||