Skip to content

Commit a86e8b8

Browse files
committed
settings UI for decompose productions flag
1 parent 15a2760 commit a86e8b8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

csp/gitprojectsettings.csp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ body {
9191
}
9292

9393
set settings.compileOnImport = ($Get(%request.Data("compileOnImport", 1)) = 1)
94+
set settings.decomposeProductions = ($Get(%request.Data("decomposeProductions", 1)) = 1)
9495

9596
if ($Get(%request.Data("basicMode", 1)) = 1) {
9697
set settings.basicMode = 1
@@ -348,6 +349,18 @@ body {
348349
</div>
349350
</div>
350351
</div>
352+
<div class="form-group row mb-3">
353+
<label for="decomposeProductions" class="offset-sm-1 col-sm-3 col-form-label" data-toggle="tooltip" data-placement="top"
354+
title="If true, interoperability productions are source-controlled under separate files for each configuration item">
355+
Decompose Productions</label>
356+
<div class="col-sm-7">
357+
<div class="custom-control custom-switch custom-switch-no-border">
358+
<input class="custom-control-input" name="decomposeProductions" type="checkbox"
359+
id="decomposeProductions" #($select(settings.decomposeProductions:"checked",1:""))# value="1">
360+
<label class="custom-control-label" for="decomposeProductions"></label>
361+
</div>
362+
</div>
363+
</div>
351364

352365
<div class="form-group row mb-3 mapping-input-group">
353366
<div class="offset-sm-1 col-sm-3">

0 commit comments

Comments
 (0)