This commit is contained in:
Stephan Richter
2020-12-25 13:55:01 +01:00
parent 312fcc900b
commit 39a416e964
2 changed files with 3 additions and 3 deletions

View File

@@ -147,8 +147,8 @@ public abstract class Block extends StretchableTile{
}
private Fieldset contactForm() {
Fieldset fieldset = new Fieldset("internal contacts");
this.button("new contact", Map.of(ACTION,ACTION_ADD_CONTACT)).addTo(fieldset);
Fieldset fieldset = new Fieldset(t("internal contacts"));
this.button(t("new contact"), Map.of(ACTION,ACTION_ADD_CONTACT)).addTo(fieldset);
if (!internalContacts.isEmpty()) {
Tag ul = new Tag("ul");
for (BlockContact contact : internalContacts) {