diff --git a/src/app/pages/search/search.component.html b/src/app/pages/search/search.component.html
index 846c9c9..41b1c74 100644
--- a/src/app/pages/search/search.component.html
+++ b/src/app/pages/search/search.component.html
@@ -8,10 +8,10 @@
Close menu
-
+
} @else {
-
+
}
diff --git a/src/app/pages/search/search.component.ts b/src/app/pages/search/search.component.ts
index 67a5b07..00bf23f 100644
--- a/src/app/pages/search/search.component.ts
+++ b/src/app/pages/search/search.component.ts
@@ -30,6 +30,7 @@ export class SearchComponent implements OnInit {
page_check:boolean = true;
page: number=0;
PRODUCT_LIMIT: number = environment.PRODUCT_LIMIT;
+ DFT_CATALOG: String = environment.DFT_CATALOG_ID;
showDrawer:boolean=false;
searchEnabled = environment.SEARCH_ENABLED;
keywords:any=undefined;
diff --git a/src/app/services/app-init.service.ts b/src/app/services/app-init.service.ts
index e920add..64c3627 100644
--- a/src/app/services/app-init.service.ts
+++ b/src/app/services/app-init.service.ts
@@ -26,6 +26,7 @@ export class AppInitService {
environment.DOME_REGISTER_LINK = config.domeRegister;
environment.DOME_PUBLISH_LINK = config.domePublish;
environment.PURCHASE_ENABLED = config.purchaseEnabled;
+ environment.DFT_CATALOG_ID = config.defaultId;
resolve(config);
}),
error: (error) => {
diff --git a/src/environments/environment.development.ts b/src/environments/environment.development.ts
index 456ba6e..fc17404 100644
--- a/src/environments/environment.development.ts
+++ b/src/environments/environment.development.ts
@@ -51,5 +51,6 @@ export const environment = {
DOME_LINKEDIN: 'https://www.linkedin.com/company/dome-marketplace/',
DOME_YOUTUBE: 'https://www.youtube.com/channel/UC8UiL59S0JiaYYr14w5eOzA',
DOME_X: 'https://x.com/DomeMarketplace',
- BUNDLE_ENABLED: false
+ BUNDLE_ENABLED: false,
+ DFT_CATALOG_ID: ''
};
diff --git a/src/environments/environment.production.ts b/src/environments/environment.production.ts
index 8980100..f5109f2 100644
--- a/src/environments/environment.production.ts
+++ b/src/environments/environment.production.ts
@@ -50,5 +50,6 @@ export const environment = {
DOME_LINKEDIN: 'https://www.linkedin.com/company/dome-marketplace/',
DOME_YOUTUBE: 'https://www.youtube.com/channel/UC8UiL59S0JiaYYr14w5eOzA',
DOME_X: 'https://x.com/DomeMarketplace',
- BUNDLE_ENABLED: false
+ BUNDLE_ENABLED: false,
+ DFT_CATALOG_ID: ''
};
diff --git a/src/environments/environment.ts b/src/environments/environment.ts
index b7c5a55..8bc7252 100644
--- a/src/environments/environment.ts
+++ b/src/environments/environment.ts
@@ -52,5 +52,6 @@ export const environment = {
DOME_LINKEDIN: 'https://www.linkedin.com/company/dome-marketplace/',
DOME_YOUTUBE: 'https://www.youtube.com/channel/UC8UiL59S0JiaYYr14w5eOzA',
DOME_X: 'https://x.com/DomeMarketplace',
- BUNDLE_ENABLED: false
+ BUNDLE_ENABLED: false,
+ DFT_CATALOG_ID: ''
};