@gravitee/ui-particles-angular 16.0.0-angular-20-fixes-055019f → 16.0.0-angular-20-fixes-a73324e
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.
|
@@ -7402,7 +7402,7 @@ class GioFormSelectionInlineHarness extends ComponentHarness {
|
|
|
7402
7402
|
this.getCardByValue = (value) => {
|
|
7403
7403
|
const byValue = this.locatorForOptional(`gio-form-selection-inline-card[value="${value}"]`)();
|
|
7404
7404
|
const byReflectValue = this.locatorForOptional(`gio-form-selection-inline-card[ng-reflect-value="${value}"]`)();
|
|
7405
|
-
return byValue ?? byReflectValue;
|
|
7405
|
+
return byValue.then(card => card ?? byReflectValue);
|
|
7406
7406
|
};
|
|
7407
7407
|
}
|
|
7408
7408
|
static { this.hostSelector = 'gio-form-selection-inline'; }
|