node.js - how to get a project lead column values from jira to node js -


i have listed project name , keys using https://developer.atlassian.com/static/connect/docs/latest/tutorials/project-activity-tutorial.html . trying project lead column values below code similar getting project name.

in public/js/jira-activity.js

row.append("td").append('span')                  .classed({ 'project-lead': true })                  .append("a")                  // make name link project                  .attr('href', function (item) { return projectbaseurl + item.key; })                  // since we're in iframe, need set _top                  .attr('target', "_top")                  .text(function (item) { return item.lead; }); 

but doesn't displays in column. 1 tell me going wrong seeing tutorial above link.


Comments

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -