@@ -135,12 +135,8 @@ function createQueryFields() {
135135 var query = document . createElement ( "span" ) ;
136136 query . id = "query" ;
137137
138- var product = document . createElement ( "span" ) ;
139-
140- var productIcon = document . createElement ( "i" ) ;
141- productIcon . className = "fa fa-archive" ;
142- productIcon . title = "Product" ;
143-
138+ var product = document . createElement ( "label" ) ;
139+ var productLabel = document . createTextNode ( "Product" ) ;
144140 var productList = document . createElement ( "select" ) ;
145141 productList . id = "textProduct" ;
146142 productList . name = "product" ;
@@ -172,12 +168,8 @@ function createQueryFields() {
172168 } ) ;
173169 } ) ;
174170
175- var milestone = document . createElement ( "span" ) ;
176-
177- var milestoneIcon = document . createElement ( "i" ) ;
178- milestoneIcon . className = "fa fa-flag" ;
179- milestoneIcon . title = "Milestone" ;
180-
171+ var milestone = document . createElement ( "label" ) ;
172+ var milestoneLabel = document . createTextNode ( "Milestone" ) ;
181173 var milestoneList = document . createElement ( "select" ) ;
182174 milestoneList . id = "textMilestone" ;
183175 milestoneList . name = "milestone" ;
@@ -191,12 +183,8 @@ function createQueryFields() {
191183 loadBoard ( ) ;
192184 } ) ;
193185
194- var assignee = document . createElement ( "span" ) ;
195-
196- var assigneeIcon = document . createElement ( "i" ) ;
197- assigneeIcon . className = "fa fa-user" ;
198- assigneeIcon . title = "Assignee" ;
199-
186+ var assignee = document . createElement ( "label" ) ;
187+ var assigneeLabel = document . createTextNode ( "Assignee" ) ;
200188 var assigneeList = document . createElement ( "select" ) ;
201189 assigneeList . id = "textAssignee" ;
202190 assigneeList . name = "assignee" ;
@@ -224,11 +212,11 @@ function createQueryFields() {
224212 debounce ( filterByString ( document . getElementById ( "textFilter" ) . value ) , 500 ) ;
225213 } ) ;
226214
227- product . appendChild ( productIcon ) ;
215+ product . appendChild ( productLabel ) ;
228216 product . appendChild ( productList ) ;
229- milestone . appendChild ( milestoneIcon ) ;
217+ milestone . appendChild ( milestoneLabel ) ;
230218 milestone . appendChild ( milestoneList ) ;
231- assignee . appendChild ( assigneeIcon ) ;
219+ assignee . appendChild ( assigneeLabel ) ;
232220 assignee . appendChild ( assigneeList ) ;
233221 filter . appendChild ( filterIcon ) ;
234222 filter . appendChild ( filterText ) ;
0 commit comments