Skip to content

Commit

Permalink
Merge pull request #840 from intuitem/fix/action-plan
Browse files Browse the repository at this point in the history
fix: action plan in progress and on hold table source
  • Loading branch information
nas-tabchiche authored Sep 18, 2024
2 parents bb6c5b2 + dd80883 commit cf86233
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
const inProgressAppliedControls: TableSource = {
head: appliedControlsHead,
body: tableSourceMapper(data.actionPlan.in_progress, appliedControlsColums),
meta: data.actionPlan.to_do
meta: data.actionPlan.in_progress
};
const onHoldAppliedControls: TableSource = {
head: appliedControlsHead,
body: tableSourceMapper(data.actionPlan.on_hold, appliedControlsColums),
meta: data.actionPlan.to_do
meta: data.actionPlan.on_hold
};
const activeAppliedControls: TableSource = {
head: appliedControlsHead,
Expand Down

0 comments on commit cf86233

Please sign in to comment.