Skip to content

Commit

Permalink
Fixed shared app username.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbouder committed Jan 8, 2024
1 parent e27766c commit 9b7d000
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jhub_apps/static/js/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ui/src/utils/jupyterhub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const getApps = (servers: any, appType: string) => {
framework: getFriendlyFrameworkName(app.framework),
url: server.url,
thumbnail: app.thumbnail,
username: app.username,
username: server.username,
ready: server.ready,
public: app.public,
});
Expand Down
2 changes: 1 addition & 1 deletion ui/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ export default defineConfig({
name: 'shared-app',
url: '/shared/test/shared-app/',
ready: true,
username: 'Test User',
user_options: {
name: 'shared-app',
jhub_app: true,
Expand All @@ -175,7 +176,6 @@ export default defineConfig({
'https://designsystem.digital.gov/img/introducing-uswds-2-0/built-to-grow--alt.jpg',
framework: 'Panel',
public: false,
username: 'Test User',
},
},
],
Expand Down

0 comments on commit 9b7d000

Please sign in to comment.