Skip to content

Commit

Permalink
Removed double encoding (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioG70 authored Nov 21, 2024
1 parent 2e626d7 commit 48f0678
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.SimplePanel;
import com.google.gwt.user.client.ui.Widget;
import com.google.gwt.http.client.URL;

import config.i18n.client.ClientMessages;

Expand Down Expand Up @@ -290,7 +291,7 @@ private SafeHtml getForeignKeyHTML(String prefix, Set<Ref> refs, ViewerRow row)
}

Hyperlink hyperlink = new Hyperlink(refName,
HistoryManager.linkToForeignKey(database.getUuid(), ref.refTable.getId(), columnNamesAndValues));
URL.decode(HistoryManager.linkToForeignKey(database.getUuid(), ref.refTable.getId(), columnNamesAndValues)));
hyperlink.addStyleName("related-records-link");
b.appendHtmlConstant(hyperlink.toString());
firstRef = false;
Expand Down

0 comments on commit 48f0678

Please sign in to comment.