File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sde_indexing_helper/static/js Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ function handleWorkflowStatusSelect() {
284
284
var row = table . row ( "#" + collection_id ) ;
285
285
let index = row . index ( ) ;
286
286
var $html = $ ( "<div />" , { html : table . data ( ) [ index ] [ COLUMNS . WORKFLOW_STATUS ] } ) ;
287
- $html . find ( "button" ) . html ( workflow_status_text ) ;
287
+ $html . find ( "button" ) . text ( workflow_status_text ) ;
288
288
$html
289
289
. find ( "button" )
290
290
. removeClass (
@@ -329,7 +329,7 @@ function handleReindexingStatusSelect() {
329
329
var row = table . row ( "#" + collection_id ) ;
330
330
let index = row . index ( ) ;
331
331
var $html = $ ( "<div />" , { html : table . data ( ) [ index ] [ COLUMNS . REINDEXING_STATUS ] } ) ;
332
- $html . find ( "button" ) . html ( reindexing_status_text ) ;
332
+ $html . find ( "button" ) . text ( reindexing_status_text ) ;
333
333
$html
334
334
. find ( "button" )
335
335
. removeClass (
@@ -367,7 +367,7 @@ function handleCuratorSelect() {
367
367
var row = table . row ( "#" + collection_id ) ;
368
368
let index = row . index ( ) ;
369
369
var $html = $ ( "<div />" , { html : table . data ( ) [ index ] [ COLUMNS . CURATOR ] } ) ;
370
- $html . find ( "button" ) . html ( curator_text ) ;
370
+ $html . find ( "button" ) . text ( curator_text ) ;
371
371
table . data ( ) [ index ] [ COLUMNS . CURATOR ] = $html . html ( ) ;
372
372
table . searchPanes . rebuildPane ( COLUMNS . CURATOR ) ;
373
373
postCurator ( collection_id , curator_id ) ;
You can’t perform that action at this time.
0 commit comments