Skip to content

Commit

Permalink
build. fix addissue params
Browse files Browse the repository at this point in the history
  • Loading branch information
ptlergo committed Nov 24, 2018
1 parent 4875c61 commit 4f5aa60
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dist/frontend/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/frontend/main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/frontend/styles.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/frontend/styles.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/src/app/components/create/create.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export class CreateComponent implements OnInit {

// event handler to add issue
addIssue(title, responsible, description, severity) {
this.issueService.addIssue(title, responsible, severity, description)
this.issueService.addIssue(title, responsible, description, severity)
.subscribe(() => {
this.router.navigate(['/list']);
});
Expand Down
5 changes: 4 additions & 1 deletion frontend/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ body {
body {
margin: 0;
font-family: Roboto, "Helvetica Neue", sans-serif;
background: #eee;
background: #f5f5f5;
}

.mat-toolbar {
background: #eee;
}
.flat-card {
background: #fff;
display: flex;
Expand Down

0 comments on commit 4f5aa60

Please sign in to comment.