Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: Position in queue
  • Loading branch information
mtojek committed Jun 28, 2023
commit e530f7df27c4776ea83080969e586f3c2f1517c7
2 changes: 1 addition & 1 deletion site/src/utils/workspace.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ const getPendingWorkspaceStatusText = (
if (provisionerJob === undefined || provisionerJob.queue_size === 0) {
return t("workspaceStatus.pending", { ns: "common" })
}
return "Pending in queue: " + provisionerJob.queue_position
return "Position in queue: " + provisionerJob.queue_position
Copy link
Member

Choose a reason for hiding this comment

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

Should we use t here too?

Copy link
Member Author

Choose a reason for hiding this comment

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

I skipped this on purpose, as we are not going to implement translations. I learnt some time ago

}

const LoadingIcon = () => {
Expand Down