complexqa_frontend_core 1.17.8 → 1.17.9

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "complexqa_frontend_core",
3
- "version": "1.17.8",
3
+ "version": "1.17.9",
4
4
  "description": "core of web ",
5
5
  "type": "module",
6
6
  "exports": {
@@ -14,8 +14,8 @@ function build_test_account_listing_columns(locale)
14
14
  createColumn(model, locale, 'login', { width: '480', is_editable: true, is_required: true }),
15
15
  createColumn(model, locale, 'password', { width: '480', is_editable: true }),
16
16
  createColumn(model, locale, 'test_account_description', { width: '480', is_editable: true }),
17
- createColumn(model, locale, 'created_at', { width: '150' }),
18
- createColumn(model, locale, 'updated_at', { width: '150' }),
17
+ createColumn(model, locale, 'created_at', { width: '170' }),
18
+ createColumn(model, locale, 'updated_at', { width: '170' }),
19
19
  createGoToColumn(model, locale),
20
20
  ];
21
21
  }
@@ -26,8 +26,8 @@ function build_test_run_listing_columns(locale, { include_select = true } = {})
26
26
  }));
27
27
  columns.push(createColumn(model, locale, 'assigned_to', { width: '220', is_editable: true, is_required: true }));
28
28
  columns.push(createColumn(model, locale, 'test_run_status', { width: '150', is_editable: true, is_required: true }));
29
- columns.push(createColumn(model, locale, 'created_at', { width: '150', is_required: true }));
30
- columns.push(createColumn(model, locale, 'completed_at', { width: '150', is_required: true }));
29
+ columns.push(createColumn(model, locale, 'created_at', { width: '170', is_required: true }));
30
+ columns.push(createColumn(model, locale, 'completed_at', { width: '170', is_required: true }));
31
31
  columns.push(createGoToColumn(model, locale));
32
32
 
33
33
  return columns;
@@ -22,9 +22,9 @@ function build_test_run_result_listing_columns(locale, { include_select = true }
22
22
  is_required : true,
23
23
  }));
24
24
  columns.push(createColumn(model, locale, 'assigned_to', { width: '220', is_editable: true, is_required: true }));
25
- columns.push(createColumn(model, locale, 'created_at', { width: '200', is_required: true }));
26
- columns.push(createColumn(model, locale, 'updated_at', { width: '200', is_required: true }));
27
- columns.push(createColumn(model, locale, 'completed_at', { width: '200', is_required: true }));
25
+ columns.push(createColumn(model, locale, 'created_at', { width: '170', is_required: true }));
26
+ columns.push(createColumn(model, locale, 'updated_at', { width: '170', is_required: true }));
27
+ columns.push(createColumn(model, locale, 'completed_at', { width: '170', is_required: true }));
28
28
  columns.push(createColumn(model, locale, 'test_result_status', { width: '150', is_editable: true, is_required: true }));
29
29
  columns.push(createGoToColumn(model, locale));
30
30