Skip to content

Commit 2459985

Browse files
docs(www): fix alert styling (#4849)
1 parent f9b2565 commit 2459985

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

projects/www/src/app/pages/guide/data/entity-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ For example, the default generated `Action.type` for the operation that queries
124124
The `EntityActionFactory.create()` method calls the factory's `formatActionType()` method
125125
to produce the `Action.type` string.
126126

127-
Because NgRx Data ignores the `type`, you can replace `formatActionType()` with your own method if you prefer a different format
128-
or provide and inject your own `EntityActionFactory`.
127+
Because NgRx Data ignores the `type`, you can replace `formatActionType()` with your own method if you prefer a different format or provide and inject your own `EntityActionFactory`.
128+
129129
</ngrx-docs-alert>
130130

131131
Note that **_each entity type has its own \_unique_ `Action` for each operation\_**, as if you had created them individually by hand.

projects/www/src/app/pages/guide/migration/v14.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ Version 14 has the minimum version requirements:
2929
- `MinimalRouterStateSerializer` is the default serializer (used with `RouterState.Minimal`)
3030

3131
<ngrx-docs-alert type="help">
32-
A migration is provided to rename `DefaultRouterStateSerializer` to `FullRouterStateSerializer`.
32+
33+
A migration is provided to rename `DefaultRouterStateSerializer` to `FullRouterStateSerializer`.
34+
3335
</ngrx-docs-alert>
3436

3537
### @ngrx/component
@@ -137,7 +139,9 @@ Removed the `defaultCollection` option in favor of `schematicCollections`.
137139
When the schematics are installed, `@ngrx/schematics` is added to the `schematicCollections` in the `angular.json` file.
138140

139141
<ngrx-docs-alert type="help">
140-
A migration is provided to add `@ngrx/schematics` to the `schematicCollections`.
142+
143+
A migration is provided to add `@ngrx/schematics` to the `schematicCollections`.
144+
141145
</ngrx-docs-alert>
142146

143147
## Deprecations

projects/www/src/app/pages/guide/schematics/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ ng generate @ngrx/schematics:store State --root --module app.module.ts
2929
```
3030

3131
<ngrx-docs-alert type="inform">
32-
The @ngrx/schematics command prefix is only needed when the default collection isn't set.
32+
33+
The @ngrx/schematics command prefix is only needed when the default collection isn't set.
34+
3335
</ngrx-docs-alert>
3436

3537
## Initial Effects Setup

projects/www/src/app/pages/guide/store-devtools/recipes/exclude.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ To prevent Store Devtools from being included in your bundle, you can exclude it
77
To exclude the DevTools, put `@ngrx/store-devtools` into an `environment.ts` file, which is replaced with `environment.prod.ts`.
88

99
<ngrx-docs-alert type="help">
10+
1011
If the environment files don't exist in your project you can use the `ng generate environments` command to create them.
12+
1113
</ngrx-docs-alert>
1214

1315
Given the below example:

projects/www/src/app/pages/guide/store/selectors.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,9 @@ The most common way to select information from the store is to use a selector fu
301301
So, when injecting `Store` into components and other injectables, the generic type can be omitted. If injected without the generic, the default generic applied is `Store<T = object>`.
302302

303303
<ngrx-docs-alert type="inform">
304+
304305
It is important to continue to provide a Store type generic if you are using the string version of selectors as types cannot be inferred automatically in those instances.
306+
305307
</ngrx-docs-alert>
306308

307309
The follow example demonstrates the use of `Store` without providing a generic:

0 commit comments

Comments
 (0)