Skip to content

Commit 15b009f

Browse files
committed
Merge branch 'master' of github.com:gchq/stroom into pathways
2 parents bb24224 + 3b7262f commit 15b009f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stroom-core-client/src/main/java/stroom/pipeline/stepping/client/presenter/SteppingPresenter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ private void updateToggleConsoleBtn(final ElementId elementId) {
440440

441441
// Only update the code indicators if we have a current result.
442442
if (stepData != null) {
443-
final SharedElementData elementData = stepData.getElementData(elementId.getId());
443+
final SharedElementData elementData = NullSafe.get(elementId, ElementId::getId, stepData::getElementData);
444444
if (elementData != null) {
445445
final Indicators indicators = elementData.getIndicators();
446446
updateToggleConsoleBtnVisibility(indicators, elementId);

0 commit comments

Comments
 (0)