aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-ui/src/nfvo-components
diff options
context:
space:
mode:
authoratulpurohit <atul.purohit1@vodafone.com>2019-11-05 14:31:56 +0530
committerOfir Sonsino <ofir.sonsino@intl.att.com>2020-01-13 09:33:40 +0000
commit8b346842194edb8a9e8c4cd2764ae8ebbce988f0 (patch)
tree3ea20981d4cdd5858c4a99eb49c0370503c3c6cb /openecomp-ui/src/nfvo-components
parent0ef638b2eb44c9f473e5ad8bea119845d968fde7 (diff)
Refresh option in validation result page
Issue-ID: SDC-2585 Co-authored-by: nikhil.soni@vodafone.com Signed-off-by: atulpurohit <atul.purohit1@vodafone.com> Change-Id: I78f1385d219837c300cb33aff82b7459f137babb Signed-off-by: atulpurohit <atul.purohit1@vodafone.com>
Diffstat (limited to 'openecomp-ui/src/nfvo-components')
-rw-r--r--openecomp-ui/src/nfvo-components/input/validation/Input.jsx16
1 files changed, 15 insertions, 1 deletions
diff --git a/openecomp-ui/src/nfvo-components/input/validation/Input.jsx b/openecomp-ui/src/nfvo-components/input/validation/Input.jsx
index 16a0abc5fd..3feb06da0e 100644
--- a/openecomp-ui/src/nfvo-components/input/validation/Input.jsx
+++ b/openecomp-ui/src/nfvo-components/input/validation/Input.jsx
@@ -105,7 +105,16 @@ class Input extends React.Component {
data-test-id={this.props['data-test-id']}
/>
)}
-
+ {type === 'file' && (
+ <FormControl
+ bsClass={'form-control input-options-other'}
+ onChange={e => this.onChangeFile(e)}
+ disabled={isReadOnlyMode || Boolean(disabled)}
+ type={type}
+ data-test-id={this.props['data-test-id']}
+ inputRef={input => (this.input = input)}
+ />
+ )}
{type === 'textarea' && (
<FormControl
className="form-control input-options-other"
@@ -220,6 +229,11 @@ class Input extends React.Component {
onChange(value);
}
+ onChangeFile(e) {
+ let { onChange } = this.props;
+ onChange(e.target.files[0]);
+ }
+
onChangeCheckBox(e) {
let { onChange } = this.props;
let checked = e.target.checked;