NIFI-3291:

- Fixing slider issue when there is only one event in the lineage graph.
- Fixing scollbar issue when accessing the queue listing.
This commit is contained in:
Matt Gilman 2017-02-08 10:31:34 -05:00 committed by Scott Aslan
parent f0c6739a1f
commit bc7b17a64c
2 changed files with 4 additions and 4 deletions

View File

@ -70,6 +70,10 @@
min-height: 150px;
}
#queue-listing-table div.slick-viewport {
overflow-x: hidden !important;
}
/* queue listing table */
#queue-listing-message {

View File

@ -665,10 +665,6 @@
// set up a slider for the showing the timeline of events
var slider = $('#provenance-lineage-slider').slider({
min: minMillis,
max: maxMillis,
step: (maxMillis - minMillis) / config.sliderTickCount,
value: maxMillis,
change: slide,
slide: slide
});