Skip to content

Commit

Permalink
updates angular version fixed connect bug
Browse files Browse the repository at this point in the history
  • Loading branch information
smasherprog committed Nov 11, 2017
1 parent ecedf71 commit 718bd35
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
36 changes: 20 additions & 16 deletions src/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,30 +8,34 @@
"build": "ng build --prod --aot && tsc electron-main.ts --outdir dist"
},
"dependencies": {
"@angular/animations": "^4.2.4",
"@angular/cdk": "^2.0.0-beta.12",
"@angular/common": "^4.2.4",
"@angular/compiler": "^4.2.4",
"@angular/core": "^4.2.4",
"@angular/forms": "^4.2.4",
"@angular/http": "^4.2.4",
"@angular/material": "^2.0.0-beta.12",
"@angular/platform-browser": "^4.2.4",
"@angular/platform-browser-dynamic": "^4.2.4",
"@angular/router": "^4.2.4",
"@angular/animations": "5.0.1",
"@angular/cdk": "5.0.0-rc0",
"@angular/common": "5.0.1",
"@angular/compiler": "5.0.1",
"@angular/core": "5.0.1",
"@angular/forms": "5.0.1",
"@angular/http": "5.0.1",
"@angular/material": "5.0.0-rc0",
"@angular/platform-browser": "5.0.1",
"@angular/platform-browser-dynamic": "5.0.1",
"@angular/router": "5.0.1",
"core-js": "^2.4.1",
"rxjs": "^5.4.2",
"typescript": "2.6.1",
"zone.js": "^0.8.14"
},
"devDependencies": {
"@angular/cli": "1.4.7",
"@angular/compiler-cli": "^4.2.4",
"@angular/language-service": "^4.2.4",
"@angular/cli": "^1.5.0",
"@angular/common": "5.0.1",
"@angular/compiler": "5.0.1",
"@angular/compiler-cli": "5.0.1",
"@angular/core": "5.0.1",
"@angular/language-service": "5.0.1",
"@types/node": "^8.0.31",
"codelyzer": "~3.2.0",
"electron": "^1.6.14",
"electron": "1.7.9",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "2.5.3"
"typescript": "2.6.1"
}
}
2 changes: 1 addition & 1 deletion src/client/src/app/connect.dialog/connect.dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ <h2 mat-dialog-title>Connect to Host</h2>
</td>
</tr>
</table>
<button mat-button type="submit" [disabled]="!f.pristine || !f.valid">Connect</button>
<button mat-button type="submit" [disabled]="!f.valid">Connect</button>
</form>
</mat-dialog-content>

0 comments on commit 718bd35

Please sign in to comment.