@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.
@@ -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 value = this.testCaseTimeoutMode === 'org' ? ORG_LEVEL_SENTINEL : this.emptyNumToZero(this.testCaseTimeout);
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)')