Skip to content

Commit

Permalink
✨ feat(result): show full URL, not only hostname
Browse files Browse the repository at this point in the history
  • Loading branch information
yaaax authored and Bastien Gatellier committed Dec 3, 2023
1 parent 384e949 commit bfac6b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/components/SiteAnalysisResult.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ class SiteAnalysisResult {
let formatedValue;
// Format date
formatedValue = this._getValidDateString(elementValue);
formatedValue = formatedValue ? formatedValue : getUrlHostName(elementValue);
formatedValue = formatedValue ? formatedValue : elementValue;
return formatedValue ? formatedValue : elementValue;
}

Expand Down

0 comments on commit bfac6b7

Please sign in to comment.