Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Allows upload, registration, execution, and deployment of:
- Datasets
- Notebooks

For more details about the project please follow this [announcement blog post](https://lfaidata.foundation/blog/2021/09/28/machine-learning-exchange-mlx/).
Copy link
Contributor

Choose a reason for hiding this comment

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

This change here seems unrelated. Could you rebase your PR or merge in the latest changes from main?



<img src="docs/images/mlx.png" height="90%" width="90%">

Additionally it provides:
Expand Down
13 changes: 10 additions & 3 deletions dashboard/origin-mlx/src/components/Sidebar/SidebarList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ function SidebarList() {
const [secretVisible, setSecretVisible] = useState(false)
const { height } = useWindowDimensions()
// Ensures the "Join the Conversation" button is away from the other buttons (if there is enough space)
const guardHeight = height > 700 && !secretVisible ? (height - 670) / 2 : 0
let buffer = !isAdmin ? (height - 600) : (height - 670) / 2 // checks if you are an admin , spacing for guardHeight will change such that elements are placed at the bottom
const guardHeight = height > 700 && !secretVisible ? buffer : 0

console.log(height)

Expand Down Expand Up @@ -119,8 +120,14 @@ function SidebarList() {
<li className="sidebar-list-wrap">
<Link to="/external-links">
<h3 className={`sidebar-list-item ${false ? 'active' : 'not-active'}`}>
<Icon className="sidebar-icon">chat</Icon>
Join the Conversation
<div style={{"display": "flex"}}>
<div style={{"paddingRight": 5, "verticalAlign": "middle"}}>
<Icon className="sidebar-icon" style={{ "marginTop" : 7}}>chat</Icon>
</div>
<div>
<text>Join the Conversation</text>
</div>
</div>
</h3>
</Link>
</li>
Expand Down