1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-24 17:51:14 +02:00

use schedule failure

This commit is contained in:
Thomas Heartman 2025-09-10 16:01:59 +02:00
parent 2ff56be7af
commit ebf929cc4c
No known key found for this signature in database
GPG Key ID: BD1F880DAED1EE78

View File

@ -140,7 +140,12 @@ const mockChangeRequests = [
createdBy: { username: 'alice', name: 'Alice Johnson', imageUrl: null },
createdAt: '2024-01-07T13:10:00Z',
environment: 'Production',
state: 'Rejected',
state: 'Scheduled',
schedule: {
scheduledAt: '2024-01-12T09:46:51+05:30',
status: 'failed',
reason: 'Mr Freeze',
},
},
];
@ -280,7 +285,7 @@ const ChangeRequestsInner = () => {
};
export const ChangeRequests = () => {
if (!useUiFlag('globalChangeRequestList')) {
if (useUiFlag('globalChangeRequestList')) {
return (
<PageContent header={<PageHeader title='Change requests' />}>
<p>Nothing to see here. Move along.</p>