From 27944c837d2ff328980202ca0677ab00134a9333 Mon Sep 17 00:00:00 2001 From: Kathy Date: Tue, 7 May 2019 12:59:47 +0000 Subject: [PATCH] B2019-017: Do not create enhanced step for an RNO --- PROMS/Volian.Controls.Library/EditItem.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;