diff options
author | yuhao10 <yuhao10@huawei.com> | 2016-10-31 10:06:12 +0800 |
---|---|---|
committer | Cang Chen <cang.chen@huawei.com> | 2016-10-31 02:25:09 +0000 |
commit | 1f1115093fc557d7a80681d7b812ad3e60ffa892 (patch) | |
tree | d21fab6221e831ae63e7be6f30abab5c4c9e9f60 | |
parent | e3ad21f93f114361f147371c8e512600ab1c8803 (diff) |
fix controller creation bug
type field have the wrong id so caused json parse error
SDNO-805
Change-Id: Id59310c86b4c4a060a4b6bea8f86b51661a7f00e
Signed-off-by: yuhao10 <yuhao10@huawei.com>
(cherry picked from commit 65e82f6a552ee2795ee3bc5975ec7a0e2b0558c8)
-rw-r--r-- | openo-portal/portal-extsys/src/main/webapp/extsys/sdncontroller/controller.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openo-portal/portal-extsys/src/main/webapp/extsys/sdncontroller/controller.html b/openo-portal/portal-extsys/src/main/webapp/extsys/sdncontroller/controller.html index 59d35c73..40fe578f 100644 --- a/openo-portal/portal-extsys/src/main/webapp/extsys/sdncontroller/controller.html +++ b/openo-portal/portal-extsys/src/main/webapp/extsys/sdncontroller/controller.html @@ -291,7 +291,7 @@ class="required">*</span>
</label>
<div class="col-sm-7">
- <input type="text" id="description" name="description"
+ <input type="text" id="type" name="type"
class="form-control"/>
</div>
</div>
|