complexqa_frontend_core 1.18.3 → 1.18.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@ function build_execution_context_listing_columns(locale)
|
|
|
19
19
|
return [
|
|
20
20
|
createPrimaryKeyColumn(model, locale, { is_editable: false }),
|
|
21
21
|
createColumn(model, locale, 'context_title', { width: '420', is_editable: true, is_required: false }),
|
|
22
|
-
...FK_FIELDS.map((field) => createColumn(model, locale, field, { width: '200', is_editable:
|
|
22
|
+
...FK_FIELDS.map((field) => createColumn(model, locale, field, { width: '200', is_editable: true })),
|
|
23
23
|
createColumn(model, locale, 'protocol', { width: '120', is_editable: true }),
|
|
24
24
|
createColumn(model, locale, 'host', { width: '200', is_editable: true }),
|
|
25
25
|
createColumn(model, locale, 'build_version', { width: '160', is_editable: true }),
|
|
@@ -46,7 +46,14 @@ function build_execution_context_details_columns(locale)
|
|
|
46
46
|
'updated_at',
|
|
47
47
|
];
|
|
48
48
|
|
|
49
|
-
const editableFields = new Set([
|
|
49
|
+
const editableFields = new Set([
|
|
50
|
+
'context_title',
|
|
51
|
+
...FK_FIELDS,
|
|
52
|
+
'protocol',
|
|
53
|
+
'host',
|
|
54
|
+
'base_url',
|
|
55
|
+
'build_version',
|
|
56
|
+
]);
|
|
50
57
|
|
|
51
58
|
return fields.map((field, index) => createColumn(model, locale, field, {
|
|
52
59
|
sort_order : String(index + 1),
|