From 545303b04b68fba1b6e254d967151fa71675b332 Mon Sep 17 00:00:00 2001 From: Burak Civan Date: Mon, 18 Jul 2022 17:58:08 +0300 Subject: [PATCH] endpoint edited --- app/Http/Controllers/Modules/Tiles.php | 2 +- public/css/app.css | 4 ---- resources/assets/js/views/modules/apps.js | 2 +- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/app/Http/Controllers/Modules/Tiles.php b/app/Http/Controllers/Modules/Tiles.php index 54d2c2ab6..8af4e94de 100644 --- a/app/Http/Controllers/Modules/Tiles.php +++ b/app/Http/Controllers/Modules/Tiles.php @@ -155,7 +155,7 @@ class Tiles extends Controller $modules = $this->getSearchModules($data); $installed = Module::all()->pluck('enabled', 'alias')->toArray(); - return view('modules.tiles.index', compact('title', 'modules', 'keyword', 'installed')); + return $this->response('modules.tiles.index', compact('modules', 'title', 'keyword', 'installed')); } public function loadMore($type, Request $request) diff --git a/public/css/app.css b/public/css/app.css index f9dff92a9..17c504e04 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -47449,10 +47449,6 @@ body{ transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); } -.hover\:rounded-lg:hover{ - border-radius: 0.5rem; -} - .hover\:bg-gray-100:hover{ --tw-bg-opacity: 1; background-color: rgb(243 244 246 / var(--tw-bg-opacity)); diff --git a/resources/assets/js/views/modules/apps.js b/resources/assets/js/views/modules/apps.js index 4cafe1a30..91b2cbd6b 100644 --- a/resources/assets/js/views/modules/apps.js +++ b/resources/assets/js/views/modules/apps.js @@ -309,7 +309,7 @@ const app = new Vue({ let target_length = event.target.value.length; if (target_length > 2) { - window.axios.get(url + '/apps/paid') + window.axios.get(url + '/apps/search?keyword=' + event.target.value) .then(response => { this.live_search_data = response.data.data.data; this.live_search_modal = true;