From fa16814f9165c89caaacfa9d6e042aa9aa77aebb Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Sat, 21 Aug 2021 20:04:47 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80RELEASE=200.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 +++++++ package.json | 2 +- src/routes/login.svelte | 12 ++++++++++-- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd5161..cef9408 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,20 @@ All notable changes to this project will be documented in this file. Dates are displayed in UTC. +#### [0.4.1](https://git.odit.services/kauft.es/linkylinky-dashboard/compare/0.4.0...0.4.1) + +- Applied new sidebar styles to logout button [`735279b`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/735279bc47ef547549e57f6d137c95541e8bdd16) + #### [0.4.0](https://git.odit.services/kauft.es/linkylinky-dashboard/compare/0.3.2...0.4.0) +> 21 August 2021 + - Migrated all sidebar items to the new component [`7365749`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/7365749113afc8f51e6b4aff78babcf361992f0a) - Removed unused commented template stuff [`5b375f8`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/5b375f888e729bea0a82938d9af7bc016c6bd74e) - Extracted a bunch of duplicate stylechecks into own component [`4377fc5`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/4377fc56c8f8d0f63a7579d21bcef95c0db45be8) - Refactoring: Rename [`cb0e86a`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/cb0e86a66af04c6f88b989ee8e1490aad689d1db) - Sidebar activestates [`a3c379a`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/a3c379a813be4349879e90ad07d9977a4e334e0d) +- 🚀RELEASE 0.4.0 [`204bf5b`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/204bf5b01d61f4ab96aaa891225377fe5f7792cf) - Added hoverstates [`2cf66ab`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/2cf66ab6cbf661330a7767896157c62d958a651e) - Removed console log [`6584b3c`](https://git.odit.services/kauft.es/linkylinky-dashboard/commit/6584b3c7c7c0d5496d52522e8130f615145d1b03) diff --git a/package.json b/package.json index a8b1f43..c8765ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@odit/linkylinky-dashboard", - "version": "0.4.0", + "version": "0.4.1", "scripts": { "dev": "svelte-kit dev", "build": "svelte-kit build", diff --git a/src/routes/login.svelte b/src/routes/login.svelte index c53e4d5..cafaf08 100644 --- a/src/routes/login.svelte +++ b/src/routes/login.svelte @@ -16,6 +16,12 @@ import Apiclient from '$lib/Apiclient'; } } + + function handleKeydown(e) { + if (e.keyCode === 13) { + login(); + } + }
@@ -30,21 +36,23 @@ import Apiclient from '$lib/Apiclient';