File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ func (r *RootCmd) provisionerJobs() *serpent.Command {
28
28
func (r * RootCmd ) provisionerJobsList () * serpent.Command {
29
29
type provisionerJobRow struct {
30
30
codersdk.ProvisionerJob `table:"provisioner_job,recursive_inline"`
31
- OrganizaitonName string `json:"organization_name" table:"organization"`
31
+ OrganizationName string `json:"organization_name" table:"organization"`
32
32
Queue string `json:"-" table:"queue"`
33
33
}
34
34
@@ -75,7 +75,7 @@ func (r *RootCmd) provisionerJobsList() *serpent.Command {
75
75
for _ , job := range jobs {
76
76
row := provisionerJobRow {
77
77
ProvisionerJob : job ,
78
- OrganizaitonName : org .HumanName (),
78
+ OrganizationName : org .HumanName (),
79
79
}
80
80
if job .Status == codersdk .ProvisionerJobPending {
81
81
row .Queue = fmt .Sprintf ("%d/%d" , job .QueuePosition , job .QueueSize )
You can’t perform that action at this time.
0 commit comments