Skip to content

Commit

Permalink
fix: changed resource names to id
Browse files Browse the repository at this point in the history
  • Loading branch information
jmetz committed Feb 8, 2024
1 parent 789af00 commit ee516c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Uploader/UploadStatus.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
let error_element: Object;
let last_error_object: Error;
let step: UploaderStep = uploader.status.step;
let model_name = uploader.resource_path.name;
let model_name = uploader.resource_path.id;
const dispatch = createEventDispatcher();
function copy_error_to_clipboard(text: string){
Expand Down Expand Up @@ -76,7 +76,7 @@
<h4>Almost there,</h4>

<p><b>There's nothing you need to do right now. Your model is uploaded and the CI-bots have started their work!</b><p>
<p>You can check the status of the CI at any point from <a href="#/status/{uploader.resource_path.name}">here</a></p>
<p>You can check the status of the CI at any point from <a href="#/status/{uploader.resource_path.id}">here</a></p>


<button on:click={restart}>Upload another model</button>
Expand Down

0 comments on commit ee516c3

Please sign in to comment.