From 95d4f7c62e3224c0d42227545808355b5beb5d63 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 28 Jun 2022 15:56:18 -0700 Subject: [PATCH] Added models router to BS tables Signed-off-by: snipe --- resources/views/partials/bootstrap-table.blade.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index f5b55cb7c..2f019e7c1 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -322,6 +322,9 @@ } else if (value.type == 'location') { item_destination = 'locations' item_icon = 'fas fa-map-marker-alt'; + } else if (value.type == 'model') { + item_destination = 'models' + item_icon = ''; } return ' ' + value.name + '';