Skip to content

Commit

Permalink
Merge pull request #312 from arfath-gwl/release-2.7.0
Browse files Browse the repository at this point in the history
Release 2.7.0
  • Loading branch information
swayangjit authored Mar 4, 2020
2 parents 3c875a2 + d183261 commit 9fa56dc
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 16 deletions.
2 changes: 1 addition & 1 deletion dist/index.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sunbird-sdk",
"version": "2.7.18",
"version": "2.7.19",
"description": "Heart of the sunbird mobile app.",
"main": "dist/index.js",
"scripts": {
Expand Down
Binary file modified src/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,21 +1,13 @@
import {ApiRequestHandler} from '../../api';
import {
CategoryAssociation,
CategoryTerm,
Channel,
Framework,
FrameworkCategory,
FrameworkCategoryCode,
FrameworkService,
FrameworkUtilService,
GetFrameworkCategoryTermsRequest
} from '..';
import {of} from 'rxjs';
import * as Collections from 'typescript-collections';
import {FrameworkMapper} from '../util/framework-mapper';
import {SharedPreferences} from '../../util/shared-preferences';
import {FrameworkKeys} from '../../preference-keys';
import { FrameworkUtilServiceImpl } from '../util/framework-util-service-impl';
import { GetFrameworkCategoryTermsHandler } from './get-framework-category-terms-handler';
import { instance, mock } from 'ts-mockito';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export class GetFrameworkCategoryTermsHandler implements ApiRequestHandler<GetFr
);
} else {
return categoryAssociationsArray
.reduce((acc, val) => acc.concat(val))
.reduce((acc, val) => acc.concat(val), [])
.reduce((acc, val) => {
acc.add(val);
return acc;
Expand Down

0 comments on commit 9fa56dc

Please sign in to comment.