Ver código fonte

Fix UI generation

ShiroSmith 5 anos atrás
pai
commit
2a798b2790
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      hide/comp/PropsEditor.hx

+ 1 - 1
hide/comp/PropsEditor.hx

@@ -96,7 +96,7 @@ class PropsEditor extends Component {
 	}
 
 	public static function makeLabelEl(name: String, content: Element) {
-		var el = new Element('<dt>${name}</dt><dd></dd>');
+		var el = new Element('<span><dt>${name}</dt><dd></dd></span>');
 		content.appendTo(el.find("dd"));
 		return el;
 	}