Skip to content

Commit

Permalink
fix: #405
Browse files Browse the repository at this point in the history
  • Loading branch information
khansadaoudi committed Oct 15, 2024
1 parent 5ef4d46 commit e85de2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/relationTable/RelationTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export default defineComponent({
searchPattern = `pattern { e: GOV -> DEP; e.label = "_"; `
}
else {
searchPattern = `pattern { GOV -[${this.currentEdge}]-> DEP; `;
searchPattern = `pattern { GOV -["${this.currentEdge}"]-> DEP; `;
}
if (props.col.name != 'sum') searchPattern += `DEP [ExtPos="${props.col.name}"/upos="${props.col.name}"]; `;
if (props.key != '' && props.key != '_') searchPattern += ` GOV [upos="${props.key}"]; `;
Expand Down

0 comments on commit e85de2a

Please sign in to comment.