Skip to content

Commit

Permalink
a Fix for missing icon on Shared Options.
Browse files Browse the repository at this point in the history
  • Loading branch information
erw13n committed Jun 2, 2022
1 parent e0d33b4 commit f5594a6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ private void RenderSingleItem(StringBuilder sb, Option o, bool isAlternate)
sb.Append("<td class=\"hcProductEditChoice\">");
sb.Append(o.Render());
sb.Append("</td>");
sb.Append("<td width='5%'><a href=\"" + destinationLink + "\">");
sb.Append("<img class=\"hcIconEdit\" alt=\"Edit\" />");
sb.Append("<td width='5%'><a class='hcIconEdit' href =\"" + destinationLink + "\">");
//sb.Append("<img class=\"hcIconEdit\" alt=\"Edit\" />");
sb.Append("</a></td>");
sb.Append("<td width='5%'>");
sb.Append("<a id=\"rem" + o.Bvin +
"\" class=\"trash\" href=\"ProductSharedChoices_Delete.aspx?redirect=y&id=");
"\" class=\"hcIconDelete hcDeleteColumn trash\" href=\"ProductSharedChoices_Delete.aspx?redirect=y&id=");
sb.Append(o.Bvin);
sb.Append("\" >");
sb.Append("<img alt=\"delete\" class=\"hcIconDelete\" />");
//sb.Append("<img alt=\"delete\" class=\"hcIconDelete\" />");
sb.Append("</a></td>");
sb.Append("</tr>");
}
Expand Down

0 comments on commit f5594a6

Please sign in to comment.