Skip to content

Commit

Permalink
Add cancel button to variable name creation dialog
Browse files Browse the repository at this point in the history
This closes NIFI-6603
  • Loading branch information
Chris Metzger authored and Adam Taft committed Dec 13, 2019
1 parent 452ca98 commit 3cc311c
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1620,7 +1620,22 @@
click: function () {
addNewVariable();
}
},

},
{
buttonText: 'Cancel',
color: {
base: '#E3E8EB',
hover: '#C7D2D7',
text: '#004849'
},
handler: {
click: function () {
this.modal('hide');
}
}

}],
handler: {
close: function () {
Expand Down

0 comments on commit 3cc311c

Please sign in to comment.