From 0eefab5febe71b9365b8d5f865eae7b4b52a60e4 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Sun, 5 Mar 2023 14:21:09 +0000 Subject: [PATCH 1/5] docs: update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 191dd5e..06e4c1f 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,13 @@ npm run dev # or: npm run build + + + + + + +
Peter
Peter

🤔
From 903a4e09094165df7ec607b178a1701660303124 Mon Sep 17 00:00:00 2001 From: "allcontributors[bot]" <46447321+allcontributors[bot]@users.noreply.github.com> Date: Sun, 5 Mar 2023 14:21:10 +0000 Subject: [PATCH 2/5] docs: update .all-contributorsrc --- .all-contributorsrc | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 1590e14..33e5ca5 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -3,5 +3,20 @@ "projectOwner": "Niek", "repoType": "github", "commit": false, - "contributors": [] -} \ No newline at end of file + "contributors": [ + { + "login": "petergeneric", + "name": "Peter", + "avatar_url": "https://avatars.githubusercontent.com/u/870655?v=4", + "profile": "https://github.com/petergeneric", + "contributions": [ + "ideas" + ] + } + ], + "files": [ + "README.md" + ], + "commitConvention": "angular", + "contributorsPerLine": 7 +} From c6168ef4cba0441a3db51379c6ed3bae1ec2c804 Mon Sep 17 00:00:00 2001 From: Michael Tanzer Date: Sun, 5 Mar 2023 14:54:42 +0000 Subject: [PATCH 3/5] Fixed issue that caused the chat to be called "null" if a user submitted an empty prompt. Made the edit button more visible by making it appear when hovering on the whole chat name header element. --- src/app.scss | 2 +- src/lib/Chat.svelte | 9 ++++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/app.scss b/src/app.scss index 9522ea3..2254112 100644 --- a/src/app.scss +++ b/src/app.scss @@ -28,7 +28,7 @@ a.is-disabled { } /* Show the edit button on hover of the chat name */ -.chatname:hover .editbutton { +.chat-header:hover .editbutton { display: inline !important; text-decoration: none !important; } diff --git a/src/lib/Chat.svelte b/src/lib/Chat.svelte index 273541d..ff15ac0 100644 --- a/src/lib/Chat.svelte +++ b/src/lib/Chat.svelte @@ -105,7 +105,7 @@ }; -