graph fix
This commit is contained in:
@@ -50,7 +50,7 @@
|
|||||||
let schema = channel.schemas.find((s) => s.name === record.schema);
|
let schema = channel.schemas.find((s) => s.name === record.schema);
|
||||||
let edgeField = findEdgeField(schema,edge.field);
|
let edgeField = findEdgeField(schema,edge.field);
|
||||||
// let schemaField = edge.targetSchema + edgeField;
|
// let schemaField = edge.targetSchema + edgeField;
|
||||||
let schemaField = edgeField;
|
let schemaField = edge.targetSchema + edgeField;
|
||||||
|
|
||||||
|
|
||||||
if (!carry[schemaField]) {
|
if (!carry[schemaField]) {
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ readonly class GuestMiddleware
|
|||||||
public function handle(Request $request, Closure $next)
|
public function handle(Request $request, Closure $next)
|
||||||
{
|
{
|
||||||
if ($this->authService->isLoggedIn()) {
|
if ($this->authService->isLoggedIn()) {
|
||||||
return redirect("/home");
|
return redirect("/lucent");
|
||||||
}
|
}
|
||||||
return $next($request);
|
return $next($request);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,13 +7,13 @@
|
|||||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||||
<title>@yield('title') - Lucent Data Platform</title>
|
<title>@yield('title') - Lucent Data Platform</title>
|
||||||
<!-- if development -->
|
<!-- if development -->
|
||||||
{{-- @php--}}
|
@php
|
||||||
{{-- echo '<script type="module" crossorigin src="http://127.0.0.1:5173/@vite/client"></script>';--}}
|
echo '<script type="module" crossorigin src="http://127.0.0.1:5173/@vite/client"></script>';
|
||||||
{{-- @endphp--}}
|
@endphp
|
||||||
{{-- <script type="module" crossorigin src="http://127.0.0.1:5173/main.js"></script>--}}
|
<script type="module" crossorigin src="http://127.0.0.1:5173/main.js"></script>
|
||||||
<!-- if production -->
|
<!-- if production -->
|
||||||
<link rel="stylesheet" href="/vendor/lucent/dist/{{ $manifest['main.css']["file"] }}" />
|
{{-- <link rel="stylesheet" href="/vendor/lucent/dist/{{ $manifest['main.css']["file"] }}" />--}}
|
||||||
<script type="module" src="/vendor/lucent/dist/{{ $manifest['main.js']["file"] }}"></script>
|
{{-- <script type="module" src="/vendor/lucent/dist/{{ $manifest['main.js']["file"] }}"></script>--}}
|
||||||
|
|
||||||
|
|
||||||
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||||
|
|||||||
Reference in New Issue
Block a user