6 Commits
0.2.2 ... 0.2.4

Author SHA1 Message Date
58adc6511a 🚀RELEASE 0.2.4
All checks were successful
continuous-integration/drone/push Build is passing
2021-08-21 09:30:20 +02:00
29c4b0013a Fixed logout redirect 2021-08-21 09:30:02 +02:00
8ed16adeff Fixed details link 2021-08-21 09:29:31 +02:00
09219ff798 🚀RELEASE 0.2.3
All checks were successful
continuous-integration/drone/push Build is passing
2021-08-21 09:23:02 +02:00
d9cd552c89 Updated login text color 2021-08-21 09:22:48 +02:00
2b82f8798c Fixed login replace 2021-08-21 09:22:01 +02:00
5 changed files with 22 additions and 6 deletions

View File

@@ -2,8 +2,24 @@
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
#### [0.2.4](https://git.odit.services/kauft.es/linkylinky-dashboard/compare/0.2.3...0.2.4)
- Fixed logout redirect [`29c4b00`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/29c4b0013abb0466f59239ae3717f60216cecc1f)
- Fixed details link [`8ed16ad`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/8ed16adeffed9e1368615caf6022d8a376337b8a)
#### [0.2.3](https://git.odit.services/kauft.es/linkylinky-dashboard/compare/0.2.2...0.2.3)
> 21 August 2021
- 🚀RELEASE 0.2.3 [`09219ff`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/09219ff7987e6088245d8a871e3a5aaca3f855fd)
- Updated login text color [`d9cd552`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/d9cd552c89415625c22c1adcb892c5a789823ce9)
- Fixed login replace [`2b82f87`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/2b82f8798cd23f15dc48a5375dc1f5ad1a3abbfd)
#### [0.2.2](https://git.odit.services/kauft.es/linkylinky-dashboard/compare/0.2.1...0.2.2)
> 21 August 2021
- 🚀RELEASE 0.2.2 [`d971513`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/d9715139cf0c5583cb1db43953c34e3293345f68)
- Fixxed routing links [`c731323`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/c731323b0bd1b757297b601e7bbc3f5034c04e9c)
#### [0.2.1](https://git.odit.services/kauft.es/linkylinky-dashboard/compare/0.2.0...0.2.1)

View File

@@ -1,6 +1,6 @@
{
"name": "@odit/linkylinky-dashboard",
"version": "0.2.2",
"version": "0.2.4",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",

View File

@@ -46,7 +46,7 @@ const userStore = () => {
//
return state;
});
location.replace("/");
location.replace("./");
}
};

View File

@@ -82,7 +82,7 @@
Delete
</button>
<a
href={`/details?shortcode=${url.shortcode}`}
href={`./details?shortcode=${url.shortcode}`}
class="px-4 py-2 font-medium tracking-wide text-white capitalize transition-colors duration-200 transform bg-blue-600 rounded-md hover:bg-blue-700 focus:outline-none focus:bg-blue-700"
>
Details

View File

@@ -11,7 +11,7 @@ import Apiclient from '$lib/Apiclient';
try {
const login = await Apiclient.login(username, password);
UserStore.login(login);
location.replace("/");
location.replace("./");
} catch (error) {
}
@@ -30,7 +30,7 @@ import Apiclient from '$lib/Apiclient';
<div class="w-full mt-4">
<input
class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border border-gray-300 rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-blue-500 dark:focus:border-blue-500 focus:outline-none focus:ring"
class="block w-full px-4 py-2 mt-2 text-gray-700 dark:text-gray-400 placeholder-gray-500 bg-white border border-gray-300 rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-blue-500 dark:focus:border-blue-500 focus:outline-none focus:ring"
type="text"
placeholder="Username"
aria-label="Username"
@@ -40,7 +40,7 @@ import Apiclient from '$lib/Apiclient';
<div class="w-full mt-4">
<input
class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border border-gray-300 rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-blue-500 dark:focus:border-blue-500 focus:outline-none focus:ring"
class="block w-full px-4 py-2 mt-2 text-gray-700 dark:text-gray-400 placeholder-gray-500 bg-white border border-gray-300 rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-blue-500 dark:focus:border-blue-500 focus:outline-none focus:ring"
type="password"
placeholder="Password"
aria-label="Password"