Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Nicholas Smay
14,768 PointsQuestion link not showing up
Does anyone see anything wrong with this code? My answer link is working, but I can't get the question link to appear once the answer is being displayed.
if (side === 'question') {
templateData.hint = hint;
templateData.sideToShow = 'answer';
templateData.sideToShowDisplay = 'Answer';
} else if (side === 'answer') {
templateData.sideToShow = 'question';
templateData.sideToShowDisplay = 'Question';
}
a(href=`${id}?side=${sideToShow}`)= sideToShowDisplay
1 Answer

Jun Hong Lin
4,641 PointsI modified my interpolation in card.pug like below and it works for me.
a(href= id + '?side=' + sideToShow ) #{sideToShowDisplay}
Seamus Sionóid
25,669 PointsSeamus Sionóid
25,669 PointsI had this issue. The solution was just to take my anchor link out of the hint if loop by indenting the anchor element once to the left.