@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.
@@ -41475,23 +41475,21 @@ class ConditionDebugStepComponent extends BaseStepComponent {
41475
41475
  return false;
41476
41476
  const badges = this.getBranchBadges(branch);
41477
41477
  const isDeleted = badges.includes('removed');
41478
- const isConditionRunning = (this.status || '').toLowerCase() === 'running';
41479
41478
  const isConditionDebugDisabled = !!this.step?.debugPointDisabled;
41480
41479
  const isConditionDeleted = this.isStepDeleted;
41481
41480
  return (isDeleted ||
41482
- isConditionRunning ||
41483
41481
  isConditionDebugDisabled ||
41484
41482
  isConditionDeleted ||
41485
41483
  !!this.parentSkipped ||
41486
41484
  !!branchStep.debugPointDisabled ||
41487
- branchStep.status === 'running');
41485
+ (branchStep.status || '').toLowerCase() === 'running');
41488
41486
  }
41489
41487
  getBranchBreakpointTooltip(branch) {
41490
41488
  const branchStepId = branch.branchStepId;
41491
41489
  const branchStep = this.step?.conditionData?.[branchStepId];
41492
41490
  const status = (branchStep?.status || '').toLowerCase();
41493
41491
  // Mirror header tooltip rules to match disabled state.
41494
- if (status === 'running' || (this.status || '').toLowerCase() === 'running') {
41492
+ if (status === 'running') {
41495
41493
  return 'Breakpoint cannot be set on a running step';
41496
41494
  }
41497
41495
  const badges = this.getBranchBadges(branch);