diff --git a/litmus-portal/frontend/public/locales/en/translation.yaml b/litmus-portal/frontend/public/locales/en/translation.yaml
index 769ae9e91..4a0810ef4 100644
--- a/litmus-portal/frontend/public/locales/en/translation.yaml
+++ b/litmus-portal/frontend/public/locales/en/translation.yaml
@@ -351,7 +351,7 @@ chaosWorkflows:
seeAnalytics: See analytics
browseSchedules:
name: Name
- cluster: Cluster
+ agent: Agent
experiments: Experiments
schedule: Schedule
nextRun: Next Run
@@ -621,7 +621,7 @@ workflowDetailsView:
targets:
targetsHeader: Target
cluster: 'Cluster :'
- namespace: 'Namespace :'
+ namespace: 'Workflow Namespace :'
workflowNodeInfo:
name: Name
type: Type
diff --git a/litmus-portal/frontend/src/components/Header/ProfileDropDown.tsx b/litmus-portal/frontend/src/components/Header/ProfileDropDown.tsx
index d32de427f..0b3b25cf2 100644
--- a/litmus-portal/frontend/src/components/Header/ProfileDropDown.tsx
+++ b/litmus-portal/frontend/src/components/Header/ProfileDropDown.tsx
@@ -105,13 +105,15 @@ const ProfileDropdown: React.FC = () => {
-
logout()}
- >
- {t('header.profileDropdown.logout')}
-
-
+
+
logout()}
+ >
+ {t('header.profileDropdown.logout')}
+
+
+
{
diff --git a/litmus-portal/frontend/src/pages/LoginPage/index.tsx b/litmus-portal/frontend/src/pages/LoginPage/index.tsx
index a13d787ad..5a9e10e3f 100644
--- a/litmus-portal/frontend/src/pages/LoginPage/index.tsx
+++ b/litmus-portal/frontend/src/pages/LoginPage/index.tsx
@@ -81,6 +81,7 @@ const LoginPage: React.FC = () => {
>
{
}
/>
({
display: 'flex',
flexDirection: 'column',
padding: '0.5rem 0.5rem',
- height: '68vh',
+ height: '100%',
backgroundColor: theme.palette.cards.header,
},
diff --git a/litmus-portal/frontend/src/views/ChaosWorkflows/BrowseSchedule/TableData.tsx b/litmus-portal/frontend/src/views/ChaosWorkflows/BrowseSchedule/TableData.tsx
index 24e37e7a2..6190d08b0 100644
--- a/litmus-portal/frontend/src/views/ChaosWorkflows/BrowseSchedule/TableData.tsx
+++ b/litmus-portal/frontend/src/views/ChaosWorkflows/BrowseSchedule/TableData.tsx
@@ -391,6 +391,7 @@ const TableData: React.FC = ({
<>>
)}
{projectRole !== 'Viewer' &&
+ data.cronSyntax !== '' &&
YAML.parse(data.workflow_manifest).spec.suspend !== true && (