Skip to content

Commit 3dcd21d

Browse files
Merge branch 'master' into stackblitz
2 parents 841fcaa + 24734ff commit 3dcd21d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ StackBlitz (https://stackblitz.com/edit/angular-fire-start).
6060

6161
**Sample data and security rules**
6262

63-
<-- include/attach/link to some json sample data (or provide credentials to a sanitized, test Firebase project) -->
63+
<!-- include/attach/link to some json sample data (or provide credentials to a sanitized, test Firebase project) -->
6464

6565
### Debug output
6666

docs/auth/router-guards.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const belongsToAccount = (next) => hasCustomClaim(`account-${next.params.id}`);
3939
export const routes: Routes = [
4040
{ path: '', component: AppComponent },
4141
{ path: 'login', component: LoginComponent, canActivate: [AngularFireAuthGuard], data: { authGuardPipe: redirectLoggedInToItems }},
42-
{ path: 'items', component: ItemListComponent, canActivate: [AngularFireAuthGuard], data: { authGuardPipe: redirectUnauthorizedToLogin },
42+
{ path: 'items', component: ItemListComponent, canActivate: [AngularFireAuthGuard], data: { authGuardPipe: redirectUnauthorizedToLogin }},
4343
{ path: 'admin', component: AdminComponent, canActivate: [AngularFireAuthGuard], data: { authGuardPipe: adminOnly }},
4444
{ path: 'accounts/:id', component: AdminComponent, canActivate: [AngularFireAuthGuard], data: { authGuardPipe: belongsToAccount }}
4545
];

docs/firestore/collections.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ import { Observable } from 'rxjs';
191191
import { map } from 'rxjs/operators';
192192

193193
export interface AccountDeposit { description: string; amount: number; }
194-
export interface AccountDepoistId extends AccountDeposit { id: string; }
194+
export interface AccountDepositId extends AccountDeposit { id: string; }
195195

196196
@Component({
197197
selector: 'app-root',

docs/functions/functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ import { AngularFireFunctionsModule, ORIGIN } from '@angular/fire/functions';
110110
],
111111
...
112112
providers: [
113-
{ provide: ORIGIN, useValue: 'http://localhost:5005' }
113+
{ provide: ORIGIN, useValue: 'http://localhost:5001' }
114114
]
115115
})
116116
export class AppModule {}

docs/install-and-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ ng serve
146146

147147
Your Angular app will compile and serve locally, visit it we should see an empty list.
148148

149-
In another tab [start adding data to an `items` collection in Firestore](https://firebase.corp.google.com/project/_/database/firestore/data). *As we're not authenticating users yet, be sure to start Firestore in **test mode** or allow reading from the `items` collection in Security Rules (`allow read: if true`).*
149+
In another tab [start adding data to an `items` collection in Firestore](https://console.firebase.google.com/project/_/database/firestore/data). *As we're not authenticating users yet, be sure to start Firestore in **test mode** or allow reading from the `items` collection in Security Rules (`allow read: if true`).*
150150

151151
Once you've created a `items` collection and are inserting documents, you should see data streaming into your Angular application.
152152

src/schematics/ng-add-common.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const addDependencies = (
100100
packageJson.devDependencies[depName] || dep.version;
101101
} else {
102102
packageJson.dependencies[depName] =
103-
packageJson.dependencies[depName] || deps.version;
103+
packageJson.dependencies[depName] || dep.version;
104104
}
105105
});
106106

0 commit comments

Comments
 (0)