don't try to display a log hint link if there isn't one

This commit is contained in:
Brian Gough 2016-07-28 16:41:02 +01:00
parent 0742db7732
commit e508f7b8a9

View file

@ -133,7 +133,7 @@ div.full-size.pdf(ng-controller="PdfController")
ng-show="entry.humanReadableHint",
ng-bind-html="wikiEnabled ? entry.humanReadableHint : stripHTMLFromString(entry.humanReadableHint)")
.card-hint-actions.clearfix
.card-hint-ext-link(ng-if="wikiEnabled")
.card-hint-ext-link(ng-if="wikiEnabled && entry.extraInfoURL")
a(
ng-href="{{ entry.extraInfoURL }}",
ng-click="trackLogHintsLearnMore()"