소스 검색

Fixed wrongly-generated IDs

Brendan Abolivier 7 년 전
부모
커밋
ca311c575c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      front/form.js

+ 1
- 1
front/form.js 파일 보기

@@ -167,7 +167,7 @@ function generateForm(id) {
167 167
 // return: a block containing the field and a label describing it (if enabled)
168 168
 function getField(fieldInfos) {
169 169
 	var block = document.createElement('div');
170
-	block.setAttribute('id', fieldInfos.name);
170
+	block.setAttribute('id', 'form_' + fieldInfos.name);
171 171
 
172 172
 	// Declare the variable first
173 173
 	let field = {};