Skip to content

Commit 0de3843

Browse files
ci: apply automated fixes
1 parent f0741db commit 0de3843

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

examples/angular/basic-persister/src/app/components/posts.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h1>Posts</h1>
2121
}
2222
: {}
2323
"
24-
>{{ post.title }}</a
24+
>{{ post.title }}</a
2525
>
2626
</p>
2727
}

examples/angular/query-options-from-a-service/src/app/components/posts.component.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ <h1>Posts</h1>
1313
<a
1414
routerLink="post/{{ post.id }}"
1515
[style]="
16-
queryClient.getQueryData(['post', post.id])
17-
? {
18-
fontWeight: 'bold',
19-
color: 'green',
20-
}
21-
: {}
22-
"
23-
>{{ post.title }}</a
16+
queryClient.getQueryData(['post', post.id])
17+
? {
18+
fontWeight: 'bold',
19+
color: 'green',
20+
}
21+
: {}
22+
"
23+
>{{ post.title }}</a
2424
>
2525
</p>
2626
}

0 commit comments

Comments
 (0)