Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
v.potekhin committed Dec 5, 2023
1 parent 9c5220a commit 8a70c3a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
12 changes: 6 additions & 6 deletions projects/demo/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ <h2>Takeaway</h2>
Read more about it in
<a
href="https://medium.com/angular-in-depth/agnostic-components-in-angular-2427923b742d"
target="_blank"
rel="noreferrer"
target="_blank"
>
this article
</a>
Expand All @@ -60,8 +60,8 @@ <h2>Takeaway</h2>
of 200+ components and directives:
<a
href="https://github.com/taiga-family/taiga-ui"
target="_blank"
rel="noreferrer"
target="_blank"
>
<img
alt=""
Expand All @@ -77,36 +77,36 @@ <h2>Takeaway</h2>
Icons made by
<a
href="https://www.flaticon.com/authors/those-icons"
rel="noreferrer"
target="_blank"
title="Those Icons"
rel="noreferrer"
>
Those Icons
</a>
and
<a
href="https://www.iconfinder.com/vectto"
rel="noreferrer"
target="_blank"
title="Vectto"
rel="noreferrer"
>
Vectto
</a>
from
<a
href="https://www.flaticon.com/"
rel="noreferrer"
target="_blank"
title="Flaticon"
rel="noreferrer"
>
www.flaticon.com
</a>
and
<a
href="https://www.iconfinder.com/"
rel="noreferrer"
target="_blank"
title="Iconfinder"
rel="noreferrer"
>
www.iconfinder.com
</a>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {CommonModule} from '@angular/common';
import {ChangeDetectionStrategy, Component} from '@angular/core';
import {PolymorpheusOutletDirective} from '@tinkoff/ng-polymorpheus';

import {ComboBoxComponent} from '../comboBox/comboBox.component';
import {ben, jedi, luke, sith, vader, yoda} from '../constants';
import {CommonModule} from "@angular/common";

interface StarWarsChar {
readonly name: string;
Expand Down
5 changes: 4 additions & 1 deletion projects/demo/src/index.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<html lang="en">
<head>
<title>Polymorpheus demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
content="width=device-width, initial-scale=1.0"
name="viewport"
/>
</head>
<body>
<my-app>loading</my-app>
Expand Down
4 changes: 2 additions & 2 deletions projects/demo/tsconfig.browser.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../tsconfig",
"compilerOptions": {
"outDir": "./dist/out-tsc-server",
"outDir": "./dist/out-tsc-server"
},
"files": ["src/main.browser.ts", "src/typings.d.ts"],
"files": ["src/main.browser.ts", "src/typings.d.ts"]
}

0 comments on commit 8a70c3a

Please sign in to comment.