Skip to content

Fix in userprofile page links to other sites #33

@EmilMitev

Description

@EmilMitev

at the moment behavior:

@if (Model.LinkedInUrl == null)
{
    <img class="inactiveSocialSiteIcon" src="~/Content/images/LinkedIn.png" width="30" />
}
else { <a href="#"><img src="@Model.LinkedInUrl" width="30" /></a>}

Should be:

@if (Model.LinkedInUrl == null)
{
    <img class="inactiveSocialSiteIcon" src="~/Content/images/LinkedIn.png" width="30" />
}
else { <a href="@Model.LinkedInUrl"><img class="inactiveSocialSiteIcon" src="~/Content/images/LinkedIn.png" width="30" /></a>}

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions