Skip to content

Commit

Permalink
MOBILE-4470 iframe: Fix regression with default values
Browse files Browse the repository at this point in the history
  • Loading branch information
dpalou committed May 21, 2024
1 parent 87c76b3 commit fb7f637
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/components/iframe/iframe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export class CoreIframeComponent implements OnChanges, OnDestroy {

@Input() src?: string;
@Input() id: string | null = null;
@Input() iframeWidth?: string;
@Input() iframeHeight?: string;
@Input() iframeWidth = '100%';
@Input() iframeHeight = '100%';
@Input() allowFullscreen?: boolean | string;
@Input() showFullscreenOnToolbar?: boolean | string;
@Input() autoFullscreenOnRotate?: boolean | string;
Expand Down

0 comments on commit fb7f637

Please sign in to comment.