Skip to content

Commit

Permalink
Add plugininstanceid to pipeline to verify correct joins and changed …
Browse files Browse the repository at this point in the history
…text in output file browser while waiting
  • Loading branch information
rudolphpienaar committed May 11, 2023
1 parent 1548b1c commit 3c1675f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/feed/FeedOutputBrowser/FileBrowser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ const FileBrowser = (props: FileBrowserProps) => {
>
<TableHeader className="file-browser-table--head" />
{filesLoading ? (
<SpinContainer title="Fetching Files" />
<SpinContainer title="Waiting on Node..." />
) : !filesLoading && items.length === 0 ? (
<EmptyStateLoader title="Empty Data set" />
) : (
Expand Down
2 changes: 1 addition & 1 deletion src/components/feed/Pipelines/NodeData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const NodeData = (props: NodeProps) => {
const textLabel = (
<g id={`text_${data.id}`} transform={`translate(-30,30)`}>
<text ref={textRef} className="label__title">
{currentId}:{titleName ? titleName : data.title}
{currentId}:{data.id}:{titleName ? titleName : data.title}
</text>
</g>
);
Expand Down

0 comments on commit 3c1675f

Please sign in to comment.