@cqa-lib/cqa-ui 1.1.521 → 1.1.522
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/esm2020/lib/test-case-details/test-case-details-edit/test-case-details-edit.component.mjs +3 -2
- package/fesm2015/cqa-lib-cqa-ui.mjs +3 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +2 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -43198,7 +43198,8 @@ class TestCaseDetailsEditComponent {
|
|
|
43198
43198
|
if (item.label === 'Retry Failed Steps')
|
|
43199
43199
|
return { ...item, value: this.emptyNumToZero(this.retryFailedSteps) };
|
|
43200
43200
|
if (item.label === 'Test Case Timeout (minutes)') {
|
|
43201
|
-
const
|
|
43201
|
+
const trimmed = (this.testCaseTimeout ?? '').toString().trim();
|
|
43202
|
+
const value = this.testCaseTimeoutMode === 'org' || trimmed === '' ? ORG_LEVEL_SENTINEL : trimmed;
|
|
43202
43203
|
return { ...item, value };
|
|
43203
43204
|
}
|
|
43204
43205
|
if (item.label === 'Wait Timeout for Locators (secs)')
|