Compare commits

...

2 Commits
0.4.2 ... 0.4.3

Author SHA1 Message Date
297b88016b
🚀Bumped version to 0.4.3
All checks were successful
continuous-integration/drone/push Build is passing
2023-04-19 13:04:53 +02:00
8959223016
fix(href): replaced location.replace with goto 2023-04-19 13:04:44 +02:00
4 changed files with 12 additions and 3 deletions

View File

@ -2,8 +2,15 @@
All notable changes to this project will be documented in this file. Dates are displayed in UTC. All notable changes to this project will be documented in this file. Dates are displayed in UTC.
#### [0.4.3](https://git.odit.services/lfk/kiosk/compare/0.4.2...0.4.3)
- fix(href): replaced location.replace with goto [`8959223`](https://git.odit.services/lfk/kiosk/commit/8959223016b2bbe8ebae79f55a489cc0503b3c78)
#### [0.4.2](https://git.odit.services/lfk/kiosk/compare/0.4.1...0.4.2) #### [0.4.2](https://git.odit.services/lfk/kiosk/compare/0.4.1...0.4.2)
> 19 April 2023
- 🚀Bumped version to 0.4.2 [`a3e437d`](https://git.odit.services/lfk/kiosk/commit/a3e437d9665e9ee1836770618c10adbbd1c8f7d6)
- fix(hrefs): Fixed relative locations [`19c9fa3`](https://git.odit.services/lfk/kiosk/commit/19c9fa339b3ddc4adef39d5783346bfd0db904af) - fix(hrefs): Fixed relative locations [`19c9fa3`](https://git.odit.services/lfk/kiosk/commit/19c9fa339b3ddc4adef39d5783346bfd0db904af)
#### [0.4.1](https://git.odit.services/lfk/kiosk/compare/0.4.0...0.4.1) #### [0.4.1](https://git.odit.services/lfk/kiosk/compare/0.4.0...0.4.1)

View File

@ -1,6 +1,6 @@
{ {
"name": "@lfk/kiosk", "name": "@lfk/kiosk",
"version": "0.4.2", "version": "0.4.3",
"private": false, "private": false,
"license": "MIT", "license": "MIT",
"repository": "https://git.odit.services/lfk/kiosk", "repository": "https://git.odit.services/lfk/kiosk",

View File

@ -1,4 +1,5 @@
<script lang="ts"> <script lang="ts">
import { goto } from '$app/navigation';
import userstore from '$lib/userstore'; import userstore from '$lib/userstore';
import { AuthService } from '@odit/lfk-client-js'; import { AuthService } from '@odit/lfk-client-js';
@ -14,7 +15,7 @@
})) as import('@odit/lfk-client-js').ResponseAuth; })) as import('@odit/lfk-client-js').ResponseAuth;
loginError=false; loginError=false;
await userstore.login(auth); await userstore.login(auth);
location.replace('./registration'); goto('./registration', {replaceState: true})
} catch (error) { } catch (error) {
console.log(error); console.log(error);
loginError = true; loginError = true;

View File

@ -1,4 +1,5 @@
<script lang="ts"> <script lang="ts">
import { goto } from '$app/navigation';
import userstore from '$lib/userstore'; import userstore from '$lib/userstore';
import { onMount } from 'svelte'; import { onMount } from 'svelte';
@ -11,7 +12,7 @@
} catch (error) { } catch (error) {
console.log(error); console.log(error);
userstore.logout(); userstore.logout();
location.replace(`./login`); goto('./login', {replaceState: true})
} }
}); });
</script> </script>