-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into f-3945/filter-by-type-mydata-page
- Loading branch information
Showing
32 changed files
with
1,536 additions
and
499 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
src/shared/canvas/DataExplorerGraphFlow/DataExplorerGraphFlowEmpty.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from 'react'; | ||
|
||
const DataExplorerGraphFlowEmpty = () => { | ||
return ( | ||
<div className="data-explorer-resolver no-current"> | ||
<div className="empty"> | ||
<img | ||
src={require('../../images/graphNodes.svg')} | ||
alt="nodes" | ||
style={{ width: 500 }} | ||
/> | ||
<div className="empty__title">No data explorer graph flow</div> | ||
<div className="empty__subtitle"> | ||
Please select a node from any resource view editor to start exploring | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default DataExplorerGraphFlowEmpty; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.