bugfix
This commit is contained in:
2
pom.xml
2
pom.xml
@@ -4,7 +4,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>de.srsoftware</groupId>
|
<groupId>de.srsoftware</groupId>
|
||||||
<artifactId>web4rail</artifactId>
|
<artifactId>web4rail</artifactId>
|
||||||
<version>1.2.56</version>
|
<version>1.2.57</version>
|
||||||
<name>Web4Rail</name>
|
<name>Web4Rail</name>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<description>Java Model Railway Control</description>
|
<description>Java Model Railway Control</description>
|
||||||
|
|||||||
@@ -147,8 +147,8 @@ public abstract class Block extends StretchableTile{
|
|||||||
}
|
}
|
||||||
|
|
||||||
private Fieldset contactForm() {
|
private Fieldset contactForm() {
|
||||||
Fieldset fieldset = new Fieldset("internal contacts");
|
Fieldset fieldset = new Fieldset(t("internal contacts"));
|
||||||
this.button("new contact", Map.of(ACTION,ACTION_ADD_CONTACT)).addTo(fieldset);
|
this.button(t("new contact"), Map.of(ACTION,ACTION_ADD_CONTACT)).addTo(fieldset);
|
||||||
if (!internalContacts.isEmpty()) {
|
if (!internalContacts.isEmpty()) {
|
||||||
Tag ul = new Tag("ul");
|
Tag ul = new Tag("ul");
|
||||||
for (BlockContact contact : internalContacts) {
|
for (BlockContact contact : internalContacts) {
|
||||||
|
|||||||
Reference in New Issue
Block a user