From c8378bb81ec59c8fb9c71e88bbfa81acc329ac84 Mon Sep 17 00:00:00 2001 From: AndzejsP Date: Thu, 29 Jun 2023 13:34:50 +0300 Subject: [PATCH] something not right --- tests/end_point_tests/endpoints.http | 4 +- web/src/components/ChatBox.vue | 35 ++++++++++++++--- web/src/components/MountedPersonalities.vue | 6 +-- .../components/MountedPersonalitiesList.vue | 38 +++++++++++++++++-- web/src/views/DiscussionsView.vue | 7 ++-- 5 files changed, 73 insertions(+), 17 deletions(-) diff --git a/tests/end_point_tests/endpoints.http b/tests/end_point_tests/endpoints.http index b1f2c104..52ced413 100644 --- a/tests/end_point_tests/endpoints.http +++ b/tests/end_point_tests/endpoints.http @@ -18,7 +18,7 @@ POST http://localhost:9600/load_discussion Content-Type: application/json { - "id": 1 // Discussion ID Must be integer + "id": 5 } ############################################ ### Delete Discussion by ID @@ -27,7 +27,7 @@ POST http://localhost:9600/delete_discussion Content-Type: application/json { - "id": 0 // Discussion ID Must be integer + "id": 0 } ############################################ ### Edit discussion title diff --git a/web/src/components/ChatBox.vue b/web/src/components/ChatBox.vue index 7df32a17..123e8bac 100644 --- a/web/src/components/ChatBox.vue +++ b/web/src/components/ChatBox.vue @@ -86,8 +86,8 @@ -
- +
+
@@ -174,7 +174,7 @@ import MountedPersonalitiesComponent from './MountedPersonalitiesComponent.vue' -->