Skip to content
Snippets Groups Projects
Commit 4978d34c authored by Alicia.DeDiosFuente's avatar Alicia.DeDiosFuente
Browse files

fix: add resume aip when status is not completed

parent b57adada
No related branches found
No related tags found
No related merge requests found
......@@ -121,7 +121,7 @@ export class AipDetailEditRoutable extends SharedAbstractDetailEditCommonRoutabl
{
color: "primary",
icon: "play_circle_filled",
displayCondition: current => !isNullOrUndefined(current) && !isNullOrUndefined(current.info) && current.info.status === PackageStatusEnum.IN_ERROR,
displayCondition: current => !isNullOrUndefined(current) && !isNullOrUndefined(current.info) && current.info.status !== PackageStatusEnum.COMPLETED,
callback: () => this.resume(),
labelToTranslate: TRANSLATE("app.navigation.button.resume"),
order: 40,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment