From 35b71ea31125ba9b9cdb68939aa2424294096345 Mon Sep 17 00:00:00 2001 From: PhilReact Date: Tue, 10 Oct 2023 22:06:44 -0500 Subject: [PATCH] added color for new feed --- core/src/components/app-view.js | 3 +- .../friends-view/add-friends-modal.js | 2 - core/src/components/friends-view/feed-item.js | 2 - .../components/friends-view/friends-feed.js | 45 ++++---------- .../friends-view/friends-side-panel-parent.js | 16 ++++- .../friends-view/friends-side-panel.js | 5 +- .../components/friends-view/friends-view.js | 3 - .../friends-view/save-settings-qdn.js | 60 +++++++++++++++++++ .../core/messaging/q-chat/q-chat.src.js | 2 - 9 files changed, 88 insertions(+), 50 deletions(-) create mode 100644 core/src/components/friends-view/save-settings-qdn.js diff --git a/core/src/components/app-view.js b/core/src/components/app-view.js index 814a18b9..cb12b505 100644 --- a/core/src/components/app-view.js +++ b/core/src/components/app-view.js @@ -44,7 +44,7 @@ import './start-minting.js' import './notification-view/notification-bell.js' import './notification-view/notification-bell-general.js' import './friends-view/friends-side-panel-parent.js' - +import './friends-view/save-settings-qdn.js' const parentEpml = new Epml({ type: 'WINDOW', source: window.parent }) @@ -560,6 +560,7 @@ class AppView extends connect(store)(LitElement) {
+ diff --git a/core/src/components/friends-view/add-friends-modal.js b/core/src/components/friends-view/add-friends-modal.js index eabe0adb..8d353d67 100644 --- a/core/src/components/friends-view/add-friends-modal.js +++ b/core/src/components/friends-view/add-friends-modal.js @@ -137,7 +137,6 @@ class AddFriendsModal extends LitElement { async updated(changedProperties) { if (changedProperties && changedProperties.has('editContent') && this.editContent) { - console.log('this.editedContent', this.editContent) this.userSelected = { name: this.editContent.name ?? '', } @@ -150,7 +149,6 @@ class AddFriendsModal extends LitElement { } render() { - console.log('hello2', this.editContent) return html`