IDEMPIERE-5135 : Add a link in a Broadcast message to open a record - fix link (#1121)

missing </a> in the link
This commit is contained in:
Nicolas Micoud 2022-01-11 16:16:03 +01:00 committed by GitHub
parent 60f76d9edf
commit c38414a876
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -199,6 +199,7 @@ public class MBroadcastMessage extends X_AD_BroadcastMessage implements Immutabl
url.append(po.get_KeyColumns()[0]);
url.append("', '").append(po.get_ID()).append("','").append(windowUUID).append("')\">");
url.append(text);
url.append("</a>");
return url.toString();
}