From 9877df1092ea9da1ba7b3a52d5d990e43d114a77 Mon Sep 17 00:00:00 2001 From: Valentin Palkovic Date: Mon, 16 Jan 2023 15:50:19 +0100 Subject: [PATCH] Adjust preserveWhitespace example --- .../stories/core/parameters/bootstrap-options.stories.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/code/frameworks/angular/template/stories/core/parameters/bootstrap-options.stories.ts b/code/frameworks/angular/template/stories/core/parameters/bootstrap-options.stories.ts index 5f7a96ef1097..d49a6b4ef4f7 100644 --- a/code/frameworks/angular/template/stories/core/parameters/bootstrap-options.stories.ts +++ b/code/frameworks/angular/template/stories/core/parameters/bootstrap-options.stories.ts @@ -3,6 +3,7 @@ import { Component } from '@angular/core'; @Component({ selector: 'component-with-whitespace', + preserveWhitespaces: true, template: `

Some content

`, @@ -12,11 +13,6 @@ class ComponentWithWhitespace {} export default { // title: 'Core / Parameters / With Bootstrap Options', component: ComponentWithWhitespace, - parameters: { - bootstrapOptions: { - preserveWhitespaces: true, - }, - }, } as Meta; export const WithPreserveWhitespaces: StoryFn = (_args) => ({});