Skip to content

Commit 22bbc0c

Browse files
committed
fix(web): exchange domain select
1 parent 3e6b1f1 commit 22bbc0c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/manager/modules/exchange/src/disclaimer/add/disclaimer-add.controller.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import bind from 'lodash/bind';
21
import find from 'lodash/find';
32
import get from 'lodash/get';
43
import head from 'lodash/head';
@@ -57,7 +56,9 @@ export default class ExchangeAddDisclaimerCtrl {
5756
if (get(this.services.navigation, 'currentActionData.domain.name')) {
5857
this.data.completeDomain = find(
5958
this.availableDomains,
60-
bind('name', this.services.navigation.currentActionData.domain.name),
59+
{
60+
name: this.services.navigation.currentActionData.domain.name,
61+
},
6162
);
6263
}
6364
if (!this.data.completeDomain) {

0 commit comments

Comments
 (0)