@fundamental-ngx/cdk 0.56.0-rc.16 → 0.56.0-rc.18

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.
@@ -2123,7 +2123,7 @@ class FocusableItemDirective {
2123
2123
  .observe(this.elementRef, false)
2124
2124
  .pipe(takeUntilDestroyed())
2125
2125
  .subscribe((isFocusable) => {
2126
- if (!isFocusable && isFocusable !== this.fdkFocusableItem) {
2126
+ if (isFocusable !== this.fdkFocusableItem) {
2127
2127
  this.fdkFocusableItem = isFocusable;
2128
2128
  }
2129
2129
  });