diff options
author | wangyuerg <wangyuerg@chinamobile.com> | 2020-09-01 17:11:20 +0800 |
---|---|---|
committer | wangyuerg <wangyuerg@chinamobile.com> | 2020-09-01 17:26:40 +0800 |
commit | 372bbf21aba82b32c544933bce08cc9ae2795fb6 (patch) | |
tree | 8c5445b1c5268fd2d7fa6fe5c86d04cac4025388 /usecaseui-portal/src/constants | |
parent | 5d4db55f151c318f0ceb7bfd71b6d56da0831bee (diff) |
fix: fix the bug of subnet-params and conflict
Change-Id: Ic27e6cfbb3a706ed23f3f1317dd552c01f285bb1
Signed-off-by: wangyuerg <wangyuerg@chinamobile.com>
Issue-ID: USECASEUI-444
Diffstat (limited to 'usecaseui-portal/src/constants')
-rw-r--r-- | usecaseui-portal/src/constants/constants.ts | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/usecaseui-portal/src/constants/constants.ts b/usecaseui-portal/src/constants/constants.ts index 3469dd93..412db5c8 100644 --- a/usecaseui-portal/src/constants/constants.ts +++ b/usecaseui-portal/src/constants/constants.ts @@ -197,11 +197,13 @@ export const CORE_FORM_ITEMS = { options: [
{
title: 'ip_address',
- key: 'an_ip_address'
+ key: 'an_ip_address',
+ holder: 'IpAddress'
},
{
title: 'logical_link',
- key: 'an_logical_link'
+ key: 'an_logical_link',
+ holder: 'LogicId'
},
{
title: 'nexthop_info',
@@ -297,11 +299,13 @@ export const CORE_FORM_ITEMS = { options: [
{
title: 'ip_address',
- key: 'cn_ip_address'
+ key: 'cn_ip_address',
+ holder: 'IpAddress'
},
{
title: 'logical_link',
- key: 'cn_logical_link'
+ key: 'cn_logical_link',
+ holder: 'LogicId'
},
{
title: 'nexthop_info',
|