Skip to content

Commit

Permalink
Temp fix for nb-select bug when nb-option value is 0
Browse files Browse the repository at this point in the history
There is currently a little nb-select bug which has been fixed, but not released yet - see the issue here: akveo/nebular#1235
Be aware of this issue when using the nb-select component until the fix is released
Closes #326
  • Loading branch information
Corey28 authored and Gocnak committed Jun 22, 2019
1 parent 6f21f05 commit d87a797
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/app/@core/models/map-type.model.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export enum MomentumMapType {
UNKNOWN = 0,
UNKNOWN = '0', // TODO: Change to num type when nb-select fix is released - https://github.com/akveo/nebular/pull/1282
SURF = 1,
BHOP = 2,
KZ = 3,
Expand Down
2 changes: 1 addition & 1 deletion client/src/app/@core/models/report-category.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ export enum ReportCategory {
INAPPROPRIATE_CONTENT = 1,
PLAGIARISM = 2,
SPAM = 3,
OTHER = 0,
OTHER = '0', // TODO: Change to num type when nb-select fix is released - https://github.com/akveo/nebular/pull/1282
}

0 comments on commit d87a797

Please sign in to comment.