From 15a02914a8f9b86d9495eb17186f23a86684b68b Mon Sep 17 00:00:00 2001 From: Pringgosutono Date: Tue, 16 Dec 2025 14:16:31 +0700 Subject: [PATCH] label fix --- resources/views/menu_v1/vehicles.blade.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/resources/views/menu_v1/vehicles.blade.php b/resources/views/menu_v1/vehicles.blade.php index ea05215..a9b9d45 100755 --- a/resources/views/menu_v1/vehicles.blade.php +++ b/resources/views/menu_v1/vehicles.blade.php @@ -785,10 +785,10 @@ searchable: true, render: function (data, type, row, meta) { let action = ` - - - - `; + + + + `; // // // @@ -803,9 +803,9 @@ searchable: true, render: function (data, type, row, meta) { return ` -
- ${row.nopol1} ${row.nopol2} ${row.nopol3} - `; +
+ ${row.nopol1} ${row.nopol2} ${row.nopol3} + `; }, createdCell: function (td, cellData, rowData, row, col) { $(td).attr('data-vid', rowData.vid); @@ -849,7 +849,7 @@ }, }, @if ($user_role != \App\Models\Users::ROLE_VENDOR) - { + { data: 'device_id', className: 'text-end text-nowrap', visible: true, @@ -857,7 +857,7 @@ searchable: true, render: function (data, type, row, meta) { const device_id = Helper.splitEvery4Char(data); - const protocol = " " + row.protocol || ''; + const protocol = " " + (row.protocol || ''); return device_id + '
' + protocol; // return `${data}` + Helper.splitEvery4Char(`${data}`);