Skip to content

Commit 6349068

Browse files
MB-52275: upgrade ramda to 0.28
Change-Id: I02a115fa50aa7c0623fb7b4bcdc153d6f61e1b22 Reviewed-on: https://review.couchbase.org/c/ns_server/+/176021 Well-Formed: Restriction Checker Well-Formed: Build Bot <[email protected]> Tested-by: Pavel Blagodov <[email protected]> Reviewed-by: Pavel Blagodov <[email protected]>
1 parent a5ff204 commit 6349068

File tree

4 files changed

+2813
-933
lines changed

4 files changed

+2813
-933
lines changed

priv/public/ui/app/mn.security.audit.item.component.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {Component, ChangeDetectionStrategy} from '@angular/core';
1212
import {pluck, scan, distinctUntilChanged, shareReplay,
1313
takeUntil, startWith, map} from 'rxjs/operators';
1414
import {Subject, combineLatest} from 'rxjs';
15-
import {not, pipe, contains, all, equals} from 'ramda';
15+
import {not, pipe, includes, all, equals} from 'ramda';
1616
import {FormControl, FormGroup} from '@angular/forms';
1717

1818
import {MnLifeCycleHooksToStream} from './mn.core.js';
@@ -77,7 +77,7 @@ class MnSecurityAuditItemComponent extends MnLifeCycleHooksToStream {
7777
.subscribe(this.maybeDisableFields.bind(this));
7878

7979
this.isThereEnabledField =
80-
this.thisModuleChanges.pipe(map(pipe(Object.values, contains(true))),
80+
this.thisModuleChanges.pipe(map(pipe(Object.values, includes(true))),
8181
shareReplay({refCount: true, bufferSize: 1}));
8282

8383
this.thisModuleChanges

priv/public/ui/package-lock.json

Lines changed: 11 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

priv/public/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"lodash": "3.3.0",
5353
"ngx-clipboard": "12.3.1",
5454
"oclazyload": "1.1.0",
55-
"ramda": "0.26.1",
55+
"ramda": "0.28.0",
5656
"rxjs": "6.5.3",
5757
"sortablejs": "1.10.2",
5858
"zone.js": "^0.9.1"

0 commit comments

Comments
 (0)