diff --git a/apps/mix-database/src/assets/images/mixcore-logo-square.svg b/apps/mix-database/src/assets/images/mixcore-logo-square.svg
index b350e296..a9368ef3 100644
--- a/apps/mix-database/src/assets/images/mixcore-logo-square.svg
+++ b/apps/mix-database/src/assets/images/mixcore-logo-square.svg
@@ -1,9 +1 @@
-
+
diff --git a/apps/mix-database/src/assets/images/mixcore-logo.svg b/apps/mix-database/src/assets/images/mixcore-logo.svg
index 11ac1a2a..ac1111ac 100644
--- a/apps/mix-database/src/assets/images/mixcore-logo.svg
+++ b/apps/mix-database/src/assets/images/mixcore-logo.svg
@@ -1,67 +1,4 @@
-
-
-
-
+
diff --git a/apps/mix-database/src/environments/environment.ts b/apps/mix-database/src/environments/environment.ts
index b83355e1..3b6e0884 100644
--- a/apps/mix-database/src/environments/environment.ts
+++ b/apps/mix-database/src/environments/environment.ts
@@ -1,5 +1,5 @@
export const environment = {
production: false,
- domainUrl: 'https://dev.mixcore.org',
- stageDomainUrl: 'https://dev.mixcore.org',
+ domainUrl: 'https://luffy.uat.4ps.dev',
+ stageDomainUrl: 'https://luffy.uat.4ps.dev/',
};
diff --git a/apps/mix-database/src/favicon.ico b/apps/mix-database/src/favicon.ico
index 618c9455..c139214c 100644
Binary files a/apps/mix-database/src/favicon.ico and b/apps/mix-database/src/favicon.ico differ
diff --git a/apps/mix-database/src/index.html b/apps/mix-database/src/index.html
index 8ee04d28..895cd443 100644
--- a/apps/mix-database/src/index.html
+++ b/apps/mix-database/src/index.html
@@ -2,7 +2,7 @@
- DataVerse | Universal Database
+ 4P's Back Office
diff --git a/libs/mix-lib/src/swagger/mix.swagger.ts b/libs/mix-lib/src/swagger/mix.swagger.ts
index 6612b989..da7880ea 100644
--- a/libs/mix-lib/src/swagger/mix.swagger.ts
+++ b/libs/mix-lib/src/swagger/mix.swagger.ts
@@ -1,10 +1,10 @@
export const MixSwagger = {
auth: {
- signIn: '/api/v2/rest/mix-account/user/login',
- register: '/api/v2/rest/mix-account/user/register',
- getProfile: '/api/v2/rest/mix-account/user/my-profile',
+ signIn: '/api/v2/rest/auth/user/login',
+ register: '/api/v2/rest/auth/user/register',
+ getProfile: '/api/v2/rest/auth/user/my-profile',
culture: '/api/v2/rest/mix-portal/culture',
- renewToken: '/api/v2/rest/mix-account/user/renew-token',
+ renewToken: '/api/v2/rest/auth/user/renew-token',
},
global: {
globalSetting: '/api/v2/rest/shared/get-global-settings',
@@ -42,12 +42,12 @@ export const MixSwagger = {
config: '/api/v2/rest/mix-portal/configuration',
},
user: {
- list: '/api/v2/rest/mix-account/user/list',
- detail: '/api/v2/rest/mix-account/user/details',
- register: '/api/v2/rest/mix-account/user/register',
- role: '/api/v2/rest/mix-account/role',
+ list: '/api/v2/rest/auth/user/list',
+ detail: '/api/v2/rest/auth/user/details',
+ register: '/api/v2/rest/auth/user/register',
+ role: '/api/v2/rest/auth/role',
permission: '/api/v2/rest/mix-services/permission',
- delete: '/api/v2/rest/mix-account/user/remove-user',
+ delete: '/api/v2/rest/auth/user/remove-user',
},
ecommerce: {
updateDeliveryCode: '/api/v2/ecommerce/update-delivery-code',
diff --git a/libs/mix-share/src/modules/database/components/database-inline-select/database-inline-select.component.html b/libs/mix-share/src/modules/database/components/database-inline-select/database-inline-select.component.html
index 4536b005..d290bb2f 100644
--- a/libs/mix-share/src/modules/database/components/database-inline-select/database-inline-select.component.html
+++ b/libs/mix-share/src/modules/database/components/database-inline-select/database-inline-select.component.html
@@ -1,4 +1,4 @@
-
+
| undefined>(undefined);
@Input() public selectedItemId?: number;
@Input() public selectedItemName?: string;
@Output() public selectedItemChange = new EventEmitter();
+ constructor() {
+ effect(
+ () => {
+ const state = this.store.stateSignal();
+ this.state.set(state);
+ },
+ { allowSignalWrites: true }
+ );
+ }
+
+ ngOnInit() {
+ this.store.stateSignal();
+ }
+
@tuiPure
public getSelectedDbName(
db: MixDatabase[],
diff --git a/libs/share-styles/src/styles/tippy.scss b/libs/share-styles/src/styles/tippy.scss
index 618c2729..a67075ce 100644
--- a/libs/share-styles/src/styles/tippy.scss
+++ b/libs/share-styles/src/styles/tippy.scss
@@ -9,6 +9,7 @@
.popup-container {
max-height: 50vh;
+ min-width: 300px;
overflow: auto;
&::-webkit-scrollbar {