getValue: function getValue()

in src/app/ProjectRolesTable.js [15:22]


  getValue: function getValue(projectRole) {
    return (projectRole.role &&
      <Link
        href={`${hubURL}/roles/${projectRole.role.id}`}
        target="_blank"
      >{projectRole.role.name}</Link>
    );
  }