updating tiles

This commit is contained in:
Stephan Richter
2020-12-02 18:17:37 +01:00
parent e8d79b71d9
commit 28ba778a64
6 changed files with 28 additions and 29 deletions

View File

@@ -212,9 +212,8 @@ public abstract class Block extends StretchableTile implements Comparable<Block>
return super.load(json);
}
@Override
public Form propForm(String id) {
Form form = super.propForm(id);
Form form = new Form("test");
new Tag("h4").content(t("Block properties")).addTo(form);
new Input(NAME, name).addTo(new Label(t("name:")+NBSP)).addTo(new Tag("p")).addTo(form);