Skip to content

Conversation

@JesusGuerrero
Copy link
Collaborator

@JesusGuerrero JesusGuerrero commented Feb 17, 2023

Fixes #70.

  • Literal
  • RegEx
    • Renaming node bug
  • Dictionary
  • Sequence
    • If Sequence input nodes aren't connected to the node in the order that they're used in the regex, the aql processor doesn't find matches
  • Union
    • UI capabilities
    • Full functionality
  • Filter
    • UI capabilities
    • Full functionality
  • Consolidate
    • UI capabilities
    • Full functionality

@marthacryan marthacryan self-requested a review February 28, 2023 01:01
Copy link
Collaborator

@marthacryan marthacryan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few comments that are non-blocking on the code - still trying to test it out locally but the code LGTM

const currentPath = `${tmpFolder}/${fileName}`;
const destinationPath = `${systemTdataFolder}/user-data-in/${fileName}`;
fs.rename(currentPath, destinationPath, function (err) {
fs.copyFile(currentPath, destinationPath, function (err) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are you copying the file instead of renaming?

editId,
} = this.state;
const { nodeId } = this.props;
console.log(nodeId);
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extra console log

this.onDeleteItems(props);
}}
renderIcon={Delete16}
iconDescription={'H'}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be something more descriptive?

annonNames.forEach((name) => {
const items = [];
const annotation = annotations[name];
annotation.forEach((elem) => {

Check failure

Code scanning / CodeQL

Uncontrolled data used in path expression

This path depends on a [user-provided value](1).
annonNames.forEach((name) => {
const items = [];
const annotation = annotations[name];
annotation.forEach((elem) => {

Check failure

Code scanning / CodeQL

Uncontrolled data used in path expression

This path depends on a [user-provided value](1).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Consistent treatment of attributes

2 participants