Skip to content
Snippets Groups Projects
Commit e6252028 authored by Leonardo Christino's avatar Leonardo Christino
Browse files

chore: fix buttons

parent f594086b
No related branches found
No related tags found
1 merge request!330chore: fix buttons
Pipeline #141663 passed
......@@ -14,7 +14,6 @@ services:
# - BACKEND_URL=http://
# - BACKEND_WSS_URL=ws://client-updater-service/
# - BACKEND_USER=user-management-service
- STAGING=dev
- GRAPHPOLARIS_VERSION=dev
- SKIP_LOGIN=false
- SENTRY_ENABLED=false
......@@ -33,7 +32,6 @@ services:
restart: always
# networks:
# - graphpolaris_network
# networks:
# graphpolaris_network:
# name: custom_network
......
......@@ -82,7 +82,7 @@ export const UpsertDatabase = (props: {
<div
className={`pt-4 flex flex-row gap-3 card-actions w-full justify-between items-center ${sampleDataPanel === true && 'hidden'}`}
>
<div className="flex justify-between items-center">
<div className="flex justify-between items-center gap-2">
<Button
variantType="primary"
className="flex-grow"
......
......@@ -182,8 +182,6 @@ export function parseQueryResult(queryResult: GraphQueryResult, ml: ML, options:
if (queryResult.nodes[i].attributes.label !== undefined) preferredText = queryResult.nodes[i].attributes.label as string;
if (queryResult.nodes[i].attributes.naam !== undefined) preferredText = queryResult.nodes[i].attributes.naam as string;
//const labelTemplate = queryResult.nodes[i].label == undefined ? queryResult.nodes[i]._id.split('/')[0] : queryResult.nodes[i].label;
let radius = options.defaultRadius || 5;
let data: NodeType = {
_id: queryResult.nodes[i]._id,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment