endpoint edited
This commit is contained in:
parent
d9e70682fa
commit
545303b04b
@ -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)
|
||||
|
4
public/css/app.css
vendored
4
public/css/app.css
vendored
@ -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));
|
||||
|
2
resources/assets/js/views/modules/apps.js
vendored
2
resources/assets/js/views/modules/apps.js
vendored
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user