File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -750,7 +750,9 @@ class LabelPlusInput extends GenericUI {
750750
751751 let getOption = ( opts : CustomOptions ) : CustomOptions | null => {
752752 opts . textReplace = ( pnl . textReplaceCheckBox . value ) ? pnl . textReplaceTextBox . text : "" ;
753- opts . actionGroup = ( pnl . runActionGroupCheckBox . value ) ? pnl . runActionGroupList . selection . text : "" ;
753+ if ( pnl . runActionGroupCheckBox . value && pnl . runActionGroupList . selection ) {
754+ opts . actionGroup = pnl . runActionGroupList . selection . text ;
755+ }
754756 opts . dialogOverlayLabelGroups = ( pnl . dialogOverlayCheckBox . value ) ? pnl . overlayPnl . groupTextBox . text : "" ;
755757 if ( pnl . overlayPnl . toleranceTextBox . text !== "" ) {
756758 opts . dialogOverlayTolerance = pnl . overlayPnl . toleranceTextBox . text ;
You can’t perform that action at this time.
0 commit comments