We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 194d116 commit a62d78bCopy full SHA for a62d78b
web/src/apps/streamis/module/jobConfig/index.vue
@@ -224,7 +224,11 @@ export default {
224
emptyWarning = !mapKey.key || !mapKey.key.trim();
225
if (configuration[key][mapKey.key]) warning = true;
226
configuration[key][mapKey.key] = mapKey.value || '';
227
- })
+ });
228
+ if ((this.diyMap[key] || []).length <= 1) {
229
+ const only = (this.diyMap[key] || [])[0] || {};
230
+ emptyWarning = !((!only.key || !only.key.trim()) && (!only.value || !only.value.trim()))
231
+ }
232
});
233
console.log('configuration', configuration, this.valueMap)
234
if (emptyWarning) {
0 commit comments