Skip to content

Commit

Permalink
mid-9514: fix showing object class of shadow reclassification tasks i…
Browse files Browse the repository at this point in the history
…n defined tasks table of resource
  • Loading branch information
skublik committed Apr 15, 2024
1 parent 8a1a7ef commit 84fc3c7
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ public static void setDefaultQueryApplicationMode(ResourceObjectSetType set, Res
if (!Objects.isNull(work.getImport()) && !Objects.isNull(work.getImport().getResourceObjects())){
return work.getImport().getResourceObjects();
}

if (!Objects.isNull(work.getShadowReclassification()) && !Objects.isNull(work.getShadowReclassification().getResourceObjects())){
return work.getShadowReclassification().getResourceObjects();
}
return null;
}
}

0 comments on commit 84fc3c7

Please sign in to comment.