fix sorting

This commit is contained in:
2023-10-30 14:33:35 +02:00
parent 48e0fc1c15
commit 814e9c35bc
6 changed files with 84 additions and 83 deletions
+2 -3
View File
@@ -104,8 +104,7 @@
}
// remove trashed edges
graph.edges = graph.edges?.filter((edge) => !edge._isTrashed && edge.source === record.id) ?? null;
graph.edges = graph.edges?.filter((edge) => !edge._isTrashed && edge.source === record.id);
axios
.post(channel.lucentUrl + "/records", {
record: record,
@@ -158,7 +157,7 @@
{#if !["_graph", "_info"].includes(activeContentTab) && isWritable}
<div class="shadow-lg "
style="position:fixed;bottom:0;left:0px;width:100%;background: rgb(206, 223, 210);z-index:1050"
style="position:fixed;bottom:0;left:0px;width:100%;background: rgb(206, 223, 210);z-index:1050"
>
<div
class="d-flex mt-3 mb-3 align-items-center justify-content-center"