Skip to content

Commit 3490ac9

Browse files
author
Alain BOUDARD
committed
fix(codestyle): imports & version reference
1 parent 3b3b1a7 commit 3490ac9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# springboot-ngrx-data
22

3-
Spring Boot with NgRx Data in Angular 10
3+
Spring Boot with NgRx Data in Angular 11
44
This project demonstrates the use of Spring Boot with Angular 10 and NgRx Data lib on top of NgRx.
55
Find the lib here : https://ngrx.io/guide/data
66

src/angular/src/app/files/list/list.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Component, OnInit } from '@angular/core';
2-
import { FilesService } from "../../services/files.service";
3-
import { Observable } from "rxjs";
4-
import { Fileup } from "../../dto/fileup";
2+
import { FilesService } from '../../services/files.service';
3+
import { Observable } from 'rxjs';
4+
import { Fileup } from '../../dto/fileup';
55

66
@Component({
77
selector: 'app-list',

src/angular/src/app/services/files.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Injectable } from '@angular/core';
22
import { HttpClient } from '@angular/common/http';
33
import { Observable } from 'rxjs';
4-
import { Fileup } from "../dto/fileup";
4+
import { Fileup } from '../dto/fileup';
55

66
@Injectable({
77
providedIn: 'root'

src/angular/src/app/todo/todo-edit/todo-edit.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class TodoEditComponent implements OnInit, OnDestroy {
3232
validateForm: {
3333
msg: 'Au moins un des champs doit être renseigné'
3434
}
35-
}
35+
};
3636
} else {
3737
return null;
3838
}

0 commit comments

Comments
 (0)