Skip to content

Commit

Permalink
feat(ws): Add Connect column to workspace table and popup with worksp…
Browse files Browse the repository at this point in the history
…ace endpoints

Signed-off-by: Yael <fishel.yael@gmail.com>
  • Loading branch information
Yael-F authored and Yael committed Jan 14, 2025
1 parent d84621a commit 68357a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions workspaces/frontend/src/app/pages/Workspaces/Workspaces.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ export const Workspaces: React.FunctionComponent = () => {
state: WorkspaceState.Paused,
stateMessage: 'It is paused.',
},
endpoints: ['endpoint1', 'endpoint2'],
},
{
name: 'My Other Jupyter Notebook',
Expand Down Expand Up @@ -140,6 +141,7 @@ export const Workspaces: React.FunctionComponent = () => {
state: WorkspaceState.Running,
stateMessage: 'It is running.',
},
endpoints: ['endpoint3', 'endpoint4'],
},
];

Expand Down
1 change: 1 addition & 0 deletions workspaces/frontend/src/shared/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export interface Workspace {
podConfig: string;
};
status: WorkspaceStatus;
endpoints: string[];
}

export type WorkspacesColumnNames = {
Expand Down

0 comments on commit 68357a9

Please sign in to comment.