@cqa-lib/cqa-ui 1.1.339 → 1.1.340

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.
@@ -21566,12 +21566,9 @@ class TestDataModalComponent {
21566
21566
  event.preventDefault();
21567
21567
  this.environmentCreate.emit();
21568
21568
  }
21569
- /** Runtime tab: insert suggested value into the runtime input field. */
21569
+ /** Runtime tab: replace the runtime input with the selected suggestion. */
21570
21570
  onRuntimeChipInsert(snippet) {
21571
- const next = this.editForm.get('runtimeValue')?.value
21572
- ? this.editForm.get('runtimeValue')?.value + ' ' + snippet
21573
- : snippet;
21574
- this.onEditFormFieldChange('runtimeValue', next);
21571
+ this.onEditFormFieldChange('runtimeValue', snippet);
21575
21572
  }
21576
21573
  onApply() {
21577
21574
  this.syncStateFromForm();