From 440adfb914d50535aa5b0026eb7fa256631782f3 Mon Sep 17 00:00:00 2001 From: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> Date: Fri, 10 Apr 2020 14:12:38 -0700 Subject: [PATCH] Fix missing page functions in library table --- data/interfaces/default/js/tables/libraries.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/interfaces/default/js/tables/libraries.js b/data/interfaces/default/js/tables/libraries.js index 37be26ca..34239c3d 100644 --- a/data/interfaces/default/js/tables/libraries.js +++ b/data/interfaces/default/js/tables/libraries.js @@ -45,12 +45,12 @@ libraries_list_table_options = { if (!rowData['is_active']) { inactive = ''; } if (cellData !== null && cellData !== '') { if (rowData['library_thumb'].substring(0, 4) == "http") { - $(td).html('
' + inactive + '
'); + $(td).html('
' + inactive + '
'); } else { - $(td).html('
' + inactive + '
'); + $(td).html('
' + inactive + '
'); } } else { - $(td).html('
' + inactive + '
'); + $(td).html('
' + inactive + '
'); } }, "orderable": false, @@ -64,7 +64,7 @@ libraries_list_table_options = { "createdCell": function (td, cellData, rowData, row, col) { if (cellData !== null && cellData !== '') { $(td).html('
' + - '' + cellData + '' + + '' + cellData + '' + '
'); } else { $(td).html('n/a');