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

chore(schema): hide schema on loading state

parent adc1467c
No related branches found
No related tags found
No related merge requests found
Pipeline #127790 passed
.nvmrc 0 → 100644
v19
...@@ -187,7 +187,7 @@ export const Schema = (props: Props) => { ...@@ -187,7 +187,7 @@ export const Schema = (props: Props) => {
</div> </div>
{nodes.length === 0 && !loading ? ( {nodes.length === 0 && !loading ? (
<p className="text-sm">No Elements</p> <p className="text-sm">No Elements</p>
) : ( ) : loading ? null : (
<ReactFlowProvider> <ReactFlowProvider>
<div className="h-[calc(100%-.8rem)] w-full"> <div className="h-[calc(100%-.8rem)] w-full">
<ReactFlow <ReactFlow
......
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