Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0b2b732

Browse files
committed
chore: correct bad rebase
Signed-off-by: Danny Kopping <[email protected]>
1 parent e48df2e commit 0b2b732

File tree

8 files changed

+553
-327
lines changed

8 files changed

+553
-327
lines changed

cli/testdata/coder_list_--output_json.golden

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,8 @@
6868
"available": 0,
6969
"most_recently_seen": null
7070
},
71-
"template_version_preset_id": null
71+
"template_version_preset_id": null,
72+
"has_ai_task": false
7273
},
7374
"latest_app_status": null,
7475
"outdated": false,

coderd/database/queries.sql.go

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/workspacebuilds.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,8 +1093,8 @@ func (api *API) convertWorkspaceBuild(
10931093
hasAITask = &build.HasAITask.Bool
10941094
}
10951095
var aiTasksSidebarAppID *uuid.UUID
1096-
if build.AITasksSidebarAppID.Valid {
1097-
aiTasksSidebarAppID = &build.AITasksSidebarAppID.UUID
1096+
if build.AITaskSidebarAppID.Valid {
1097+
aiTasksSidebarAppID = &build.AITaskSidebarAppID.UUID
10981098
}
10991099

11001100
apiJob := convertProvisionerJob(job)

0 commit comments

Comments
 (0)