Skip to content

Commit 9a7d1d5

Browse files
committed
fixup! fix(overlay): fix type in property name
1 parent 5c47404 commit 9a7d1d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cdk/overlay/overlay-directives.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ export class CdkConnectedOverlay implements OnDestroy, OnChanges {
184184
/** Whether the overlay's width and height can be constrained to fit within the viewport. */
185185
@Input('cdkConnectedOverlayFlexibleDimensions')
186186
get flexibleDimensions() { return this._flexibleDimensions; }
187-
set flexibleDimensions(value: boolean) {
188-
this._flexibleDimensions = coerceBooleanProperty(value);
187+
set flexibleDimensions(value: boolean) {
188+
this._flexibleDimensions = coerceBooleanProperty(value);
189189
}
190190

191191
/** Whether the overlay can grow after the initial open when flexible positioning is turned on. */

0 commit comments

Comments
 (0)