Describe the issue
Currently MetadataEditorTags and FilterTools are defined as classes that extend React.Component. This is causing some race conditions with their state such as when handling tags. The bug would be easy to address using useEffect if we rewrote the classes as components as we did with many classes in pipeline-editor.
Describe the issue Currently
MetadataEditorTags
andFilterTools
are defined as classes that extendReact.Component
. This is causing some race conditions with their state such as when handling tags. The bug would be easy to address usinguseEffect
if we rewrote the classes as components as we did with many classes in pipeline-editor.