Skip to content

Commit

Permalink
NC 18 Workflow integration #10
Browse files Browse the repository at this point in the history
  • Loading branch information
Rello committed Jan 8, 2020
1 parent 12461d8 commit 2d945e7
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions js/flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,31 @@
},
}, [
createElement('select', {
attrs: {
id: 'report'
},
domProps: {
value: self.value,
required: 'true'
},
style: {
width: '100%'
},
on: {
input: function (event) {
self.$emit('input', event.target.value)
}
}
}, [
createElement('option', {
domProps: {
value: '1',
innerText: 'Test Report'
innerText: 'test'
},

})
]
),
)
])
},
props: {
Expand Down

0 comments on commit 2d945e7

Please sign in to comment.