Improve description

revert-70ac1926
shamalka 4 years ago
parent 4e3a45fa93
commit 404b1b11a9

@ -47,7 +47,7 @@
},
"IN-REVIEW": {
"title": "In-Review",
"text": "This state can be applied when the application is being reviewed by approvers.\n You can only proceed to one of the following states:",
"text": "In this state the application is being reviewed by approvers. You can move from this state to APPROVED state if it is approved by reviewers. Otherwise, you can move the application into either REJECTED state or CREATED state based on the feedback getting by reviewers.",
"icon": "audit",
"step": 1
},
@ -83,7 +83,7 @@
},
"RETIRED": {
"title": "Retired",
"text": "The final state of an application, where no transition of states will be allowed after this.\n You can only proceed to one of the following states:",
"text": "The final state of an application, where no transition of states will be allowed after this.",
"icon": "rest",
"step": 7
}

@ -177,7 +177,6 @@ class LifeCycle extends React.Component {
} = this.state;
const { lifecycle } = this.props;
let proceedingStates = [];
if (
lifecycle !== null &&
lifecycle.hasOwnProperty(currentStatus) &&
@ -211,7 +210,7 @@ class LifeCycle extends React.Component {
title={step.title}
disabled={current !== step.step}
description={
current === step.step ? (
current === step.step && (
<div style={{ width: 400 }}>
<p>{step.text}</p>
{proceedingStates.map(lifecycleState => {
@ -228,8 +227,6 @@ class LifeCycle extends React.Component {
);
})}
</div>
) : (
''
)
}
/>
@ -251,17 +248,13 @@ class LifeCycle extends React.Component {
<Tag color="blue">{selectedStatus}</Tag>
</Text>
<br />
{lifecycle &&
selectedStatus &&
lifecycle[selectedStatus].isEndState ? (
{lifecycle && selectedStatus && lifecycle[selectedStatus].isEndState && (
<Alert
message="In this state application becomes completely obsolete. Be careful,
this process cannot be undone."
banner
style={{ marginTop: 5 }}
/>
) : (
<div />
)}
<Divider orientation="left">Reason</Divider>
<ReactQuill

Loading…
Cancel
Save