Minor variable rename.

This commit is contained in:
Paulo Gustavo Veiga 2023-11-19 20:28:27 -08:00
parent 884a93478b
commit 92edef9bd6
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ public class MvcMindmapController {
final MindMapBean mindmap = findMindmapBean(id);
model.addAttribute("principal", Utils.getUser());
model.addAttribute("mindmap", mindmap);
model.addAttribute("mapFullName", mindmap.getCreator().getFullName());
model.addAttribute("creatorFullName", mindmap.getCreator().getFullName());
final Locale locale = LocaleContextHolder.getLocale();
model.addAttribute("locale", locale.toString().toLowerCase());
return "mindmapViewonly";

View File

@ -71,7 +71,7 @@
</a>
<div id="mapDetails">
<span class="title"><spring:message code="CREATOR"/>:</span><span>${mapFullName}</span>
<span class="title"><spring:message code="CREATOR"/>:</span><span>${creatorFullName}</span>
<span class="title"><spring:message code="DESCRIPTION"/>:</span><span>${mindmap.title}</span>
</div>