HPCC-22620 Only allow certain checkboxes in preflight components Reviewed-By: Gordon Smith <gordon.smith@lexisnexis.com> Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
@@ -135,7 +135,10 @@ define([
columns: {
col1: selector({
width: 20,
- selectorType: 'checkbox'
+ selectorType: 'checkbox',
+ disabled: function (item) {
+ return item.type === "clusterProcess";
+ }
}),
Configuration: {
label: this.i18n.Configuration,
@@ -122,7 +122,10 @@ define([
+ return item.type !== "targetClusterProcess";