From f198211b1121c9a08d94a87f6ae59150a109bea4 Mon Sep 17 00:00:00 2001 From: Shaban Kamel Date: Mon, 9 Sep 2024 18:58:26 +0300 Subject: [PATCH] Solara --- solara/lib/core/dashboard/brand/BrandView.js | 3 +-- solara/lib/core/dashboard/brand/brand.html | 2 -- .../lib/core/dashboard/{brand => component}/AddFieldSheet.js | 0 3 files changed, 1 insertion(+), 4 deletions(-) rename solara/lib/core/dashboard/{brand => component}/AddFieldSheet.js (100%) diff --git a/solara/lib/core/dashboard/brand/BrandView.js b/solara/lib/core/dashboard/brand/BrandView.js index 8534be5..9f39671 100644 --- a/solara/lib/core/dashboard/brand/BrandView.js +++ b/solara/lib/core/dashboard/brand/BrandView.js @@ -1,6 +1,6 @@ import {DataSource} from './BrandModel.js'; import '../component/OnboardBottomSheet.js'; -import './AddFieldSheet.js'; +import '../component/AddFieldSheet.js'; import '../component/ConfirmationDialog.js'; import '../component/MessageBottomSheet.js'; @@ -12,7 +12,6 @@ class BrandView { this.sectionsContainer = document.getElementById('sections'); this.addFieldSheet = document.getElementById('addFieldSheet'); - this.overlay = document.getElementById('overlay'); this.confirmationDialog = document.getElementById('confirmationDialog'); this.messageBottomSheet = document.getElementById('messageBottomSheet'); diff --git a/solara/lib/core/dashboard/brand/brand.html b/solara/lib/core/dashboard/brand/brand.html index 60fb675..7760211 100644 --- a/solara/lib/core/dashboard/brand/brand.html +++ b/solara/lib/core/dashboard/brand/brand.html @@ -435,8 +435,6 @@

- -
diff --git a/solara/lib/core/dashboard/brand/AddFieldSheet.js b/solara/lib/core/dashboard/component/AddFieldSheet.js similarity index 100% rename from solara/lib/core/dashboard/brand/AddFieldSheet.js rename to solara/lib/core/dashboard/component/AddFieldSheet.js