mirror of https://github.com/apache/nifi.git
[NIFI-2898] Add Processor dialog processor descriptions now scrollable
This closes #1134.
This commit is contained in:
parent
b9a940bbd1
commit
9fb3039416
|
@ -61,6 +61,7 @@
|
|||
height: 62px;
|
||||
font-size: 12px;
|
||||
line-height: 16px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
#processor-types-table {
|
||||
|
|
|
@ -310,6 +310,8 @@ nf.ng.ProcessorComponent = function (serviceProvider) {
|
|||
$('#processor-type-description').html(processorType.description).ellipsis();
|
||||
}
|
||||
|
||||
nf.Common.toggleScrollable($('#processor-type-description').get(0));
|
||||
|
||||
// populate the dom
|
||||
$('#processor-type-name').text(processorType.label).ellipsis();
|
||||
$('#selected-processor-name').text(processorType.label);
|
||||
|
|
Loading…
Reference in New Issue