diff --git a/PROMS/Volian.Controls.Library/EditItem.cs b/PROMS/Volian.Controls.Library/EditItem.cs index f14e081a..803ca3c3 100644 --- a/PROMS/Volian.Controls.Library/EditItem.cs +++ b/PROMS/Volian.Controls.Library/EditItem.cs @@ -1558,7 +1558,9 @@ namespace Volian.Controls.Library if (scfg.Section_LnkEnh != "Y") return; cfgeds = scfg.MyEnhancedDocuments; } - else + // B2019-017: Add check for caution & note, only add enahnced step for those types. Note that procedure is done from tree and section + // is done from code above. HLS are not added as children, so are not added here. + else if (fromType == E_FromType.Caution || fromType == E_FromType.Note) { StepConfig sc = new StepConfig(MyItemInfo.MyContent.Config); cfgeds = sc.MyEnhancedDocuments;