From 5dea66a341923849504df4d7493c4b42ff78c0f5 Mon Sep 17 00:00:00 2001 From: ClaudiaHdezPerez Date: Mon, 9 Dec 2024 03:39:50 -0800 Subject: [PATCH] fix_api(fe): alerts mssg edited and increased sidebar width --- .../src/app/modules/global/components/menu/menu.component.css | 2 +- .../office/components/equipment/index/equipment.component.ts | 2 +- .../policy/components/comparison/index/comparison.component.ts | 2 +- .../workCenter/components/alert/index/alert.component.ts | 2 +- .../workCenter/components/excess/index/excess.component.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/modules/global/components/menu/menu.component.css b/frontend/src/app/modules/global/components/menu/menu.component.css index 08b51e74..9e6e9126 100644 --- a/frontend/src/app/modules/global/components/menu/menu.component.css +++ b/frontend/src/app/modules/global/components/menu/menu.component.css @@ -55,7 +55,7 @@ .sidebar { grid-area: sidebar; position: relative; - width:240px; + width:250px; height: calc(100vh - 50px); /* Full height minus header height */ background-color: #ffffff; border-right: 2.3px solid #cacbcc; diff --git a/frontend/src/app/modules/office/components/equipment/index/equipment.component.ts b/frontend/src/app/modules/office/components/equipment/index/equipment.component.ts index b230fc9b..85dfb8c7 100644 --- a/frontend/src/app/modules/office/components/equipment/index/equipment.component.ts +++ b/frontend/src/app/modules/office/components/equipment/index/equipment.component.ts @@ -138,7 +138,7 @@ export class EquipmentComponent implements OnInit { this.showTable = true; } else { this.showTable = false; - this.global.openDialog('Por favor, selecciona un Centro de Trabajo y una Oficina.'); + this.global.openDialog('Por favor, selecciona un Centro de Trabajo y una Oficina válidos.'); } } } diff --git a/frontend/src/app/modules/policy/components/comparison/index/comparison.component.ts b/frontend/src/app/modules/policy/components/comparison/index/comparison.component.ts index 535c631b..432e6670 100644 --- a/frontend/src/app/modules/policy/components/comparison/index/comparison.component.ts +++ b/frontend/src/app/modules/policy/components/comparison/index/comparison.component.ts @@ -86,7 +86,7 @@ export class ComparisonComponent implements OnInit { this.showTable = true; } else { this.showTable = false; - this.global.openDialog('Por favor, selecciona un Centro de Trabajo y una Política.'); + this.global.openDialog('Por favor, selecciona un Centro de Trabajo y una Política válidos.'); } } } diff --git a/frontend/src/app/modules/workCenter/components/alert/index/alert.component.ts b/frontend/src/app/modules/workCenter/components/alert/index/alert.component.ts index 2a3d87f6..101e1408 100644 --- a/frontend/src/app/modules/workCenter/components/alert/index/alert.component.ts +++ b/frontend/src/app/modules/workCenter/components/alert/index/alert.component.ts @@ -70,7 +70,7 @@ export class AlertComponent implements OnInit { this.showTable = true; } else { - this.global.openDialog('Por favor, selecciona un Centro de Trabajo.'); + this.global.openDialog('Por favor, selecciona un Centro de Trabajo válido.'); } } } diff --git a/frontend/src/app/modules/workCenter/components/excess/index/excess.component.ts b/frontend/src/app/modules/workCenter/components/excess/index/excess.component.ts index 051867ea..4ce40171 100644 --- a/frontend/src/app/modules/workCenter/components/excess/index/excess.component.ts +++ b/frontend/src/app/modules/workCenter/components/excess/index/excess.component.ts @@ -117,7 +117,7 @@ export class ExcessComponent { if (this.getControlValue('year') && this.getControlValue('month')) this.showTable = true; else - this.global.openDialog('Por favor, selecciona una fecha válida.'); + this.global.openDialog('Por favor, selecciona un mes y un año.'); } }