Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/app/shared/example-viewer/example-viewer.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</div>
} @else {
<div class="docs-example-viewer-title">
<p>{{exampleData?.title}}</p>
{{exampleData?.title}}

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fixes some weird spacing in the example header.


<div class="docs-example-viewer-actions">
<button
Expand Down
3 changes: 3 additions & 0 deletions docs/src/app/shared/stackblitz/stackblitz-writer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ export const TEMPLATE_FILES = [
'tsconfig.app.json',
'tsconfig.json',
'tsconfig.spec.json',
// We need a gitignore, because harness tests generate files in `dist`
// which can prevent users from forking the example (see 33836).
'.gitignore',
'src/index.html',
'src/main.ts',
'src/styles.css',
Expand Down
1 change: 1 addition & 0 deletions docs/src/assets/stackblitz/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
Loading