Skip to content

Commit

Permalink
Merge pull request #1 from 2lambda123/NIFI-6603
Browse files Browse the repository at this point in the history
Add cancel button to variable name creation dialog
  • Loading branch information
2lambda123 committed May 20, 2024
2 parents 441781c + 3cc311c commit 7106aa2
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1622,7 +1622,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 7106aa2

Please sign in to comment.