Skip to content

Commit

Permalink
Merge pull request #840 from mobi/dev
Browse files Browse the repository at this point in the history
v1.13.1
  • Loading branch information
grahamhency authored Sep 23, 2021
2 parents 24b769f + 6456755 commit 26e1ba6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Goponents

###### Currently `v1.13.0`
###### Currently `v1.13.1`

This project houses a set of UI components for Angular 7+ and designed around the 'Go' design system.

Expand Down
2 changes: 1 addition & 1 deletion projects/go-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tangoe/goponents",
"version": "1.13.0",
"version": "1.13.1",
"repository": {
"type": "git",
"url": "git+https://github.com/mobi/goponents.git"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class GoFormErrorsComponent {
*/
errorString(k: string, v: any): string {
const ngValidator: (...args: any) => string = this.goFormService.ngValidators[k];
return ngValidator ? (typeof v === 'object') ? ngValidator(v) : v : v;
return ngValidator ? ngValidator(v) : v;
}

}
2 changes: 1 addition & 1 deletion projects/go-lib/src/lib/services/form.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FormControl, Validators } from '@angular/forms';

import { GoFormService } from './form.service';

fdescribe('GoFormService', () => {
describe('GoFormService', () => {
let service: GoFormService;

beforeEach(() => {
Expand Down

0 comments on commit 26e1ba6

Please sign in to comment.