Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
configuration with no condition icon
  • Loading branch information
julijaovcinnikova committed Nov 28, 2024
1 parent b6672ff commit a1d6530
Show file tree
Hide file tree
Showing 2 changed files with 8,302 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/imports/client/custom/vq/js/transformations.js
Original file line number Diff line number Diff line change
Expand Up @@ -1511,8 +1511,8 @@ function setSchemaNamesForQuery(abstractQueryTable, schemaNamesTable, parentSche
}

async function getSchemaNameForElement(elem_id){
let selected_elem_id = Session.get("activeElement");
if(typeof elem_id !== "undefined" && elem_id !== null) selected_elem_id = elem_id;
let selected_elem_id = elem_id;
if(typeof selected_elem_id === "undefined" || selected_elem_id === null) selected_elem_id = Session.get("activeElement");
let tempSymbolTable = await generateSymbolTable(true);
let sc = await dataShapes.schema.schema;
let schemaNames = setSchemaNamesForQuery(tempSymbolTable["abstractQueryTable"], [], sc);
Expand Down
Loading

0 comments on commit a1d6530

Please sign in to comment.