@cqa-lib/cqa-ui 1.1.424 → 1.1.425

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.
@@ -41587,16 +41587,14 @@ class ConditionDebugStepComponent extends BaseStepComponent {
41587
41587
  return false;
41588
41588
  const badges = this.getBranchBadges(branch);
41589
41589
  const isDeleted = badges.includes('removed');
41590
- const isConditionRunning = (this.status || '').toLowerCase() === 'running';
41591
41590
  const isConditionDebugDisabled = !!((_b = this.step) === null || _b === void 0 ? void 0 : _b.debugPointDisabled);
41592
41591
  const isConditionDeleted = this.isStepDeleted;
41593
41592
  return (isDeleted ||
41594
- isConditionRunning ||
41595
41593
  isConditionDebugDisabled ||
41596
41594
  isConditionDeleted ||
41597
41595
  !!this.parentSkipped ||
41598
41596
  !!branchStep.debugPointDisabled ||
41599
- branchStep.status === 'running');
41597
+ (branchStep.status || '').toLowerCase() === 'running');
41600
41598
  }
41601
41599
  getBranchBreakpointTooltip(branch) {
41602
41600
  var _a, _b, _c;
@@ -41604,7 +41602,7 @@ class ConditionDebugStepComponent extends BaseStepComponent {
41604
41602
  const branchStep = (_b = (_a = this.step) === null || _a === void 0 ? void 0 : _a.conditionData) === null || _b === void 0 ? void 0 : _b[branchStepId];
41605
41603
  const status = ((branchStep === null || branchStep === void 0 ? void 0 : branchStep.status) || '').toLowerCase();
41606
41604
  // Mirror header tooltip rules to match disabled state.
41607
- if (status === 'running' || (this.status || '').toLowerCase() === 'running') {
41605
+ if (status === 'running') {
41608
41606
  return 'Breakpoint cannot be set on a running step';
41609
41607
  }
41610
41608
  const badges = this.getBranchBadges(branch);