Skip to content

Commit

Permalink
Trim the custom Jupyter image string (kubeflow#6529)
Browse files Browse the repository at this point in the history
  • Loading branch information
haoxins authored Dec 7, 2023
1 parent 003c421 commit 65d1bfe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export class FormNewComponent implements OnInit, OnDestroy {

// Use the custom image instead
if (notebook.customImageCheck) {
notebook.image = notebook.customImage;
notebook.image = notebook.customImage?.trim();
} else if (notebook.serverType === 'group-one') {
// Set notebook image from imageGroupOne
notebook.image = notebook.imageGroupOne;
Expand Down

0 comments on commit 65d1bfe

Please sign in to comment.