mirror of https://github.com/apache/nifi.git
NIFI-1363: - Using the appropriate namespace to call the function to detect if the content viewer is configured.
Signed-off-by: jpercivall <joepercivall@yahoo.com>
This commit is contained in:
parent
6c46f22b62
commit
6e9175459f
|
@ -1292,7 +1292,7 @@ nf.ProvenanceTable = (function () {
|
|||
if (event.inputContentAvailable === true) {
|
||||
$('#input-content-download').show();
|
||||
|
||||
if (isContentViewConfigured()) {
|
||||
if (nf.Common.isContentViewConfigured()) {
|
||||
$('#input-content-view').show();
|
||||
} else {
|
||||
$('#input-content-view').hide();
|
||||
|
@ -1336,7 +1336,7 @@ nf.ProvenanceTable = (function () {
|
|||
if (event.inputContentAvailable === true) {
|
||||
$('#input-content-download').show();
|
||||
|
||||
if (isContentViewConfigured()) {
|
||||
if (nf.Common.isContentViewConfigured()) {
|
||||
$('#input-content-view').show();
|
||||
} else {
|
||||
$('#input-content-view').hide();
|
||||
|
@ -1349,7 +1349,7 @@ nf.ProvenanceTable = (function () {
|
|||
if (event.outputContentAvailable === true) {
|
||||
$('#output-content-download').show();
|
||||
|
||||
if (isContentViewConfigured()) {
|
||||
if (nf.Common.isContentViewConfigured()) {
|
||||
$('#output-content-view').show();
|
||||
} else {
|
||||
$('#output-content-view').hide();
|
||||
|
|
Loading…
Reference in New Issue