Skip to content

Commit

Permalink
allows for an undefined codebase property (#6631)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkendall authored Jan 2, 2024
1 parent 7795425 commit 0f9ccc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/apphosting-backends-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function populateTable(backends: apphosting.Backend[], table: any) {
const [location, , backendId] = backend.name.split("/").slice(3, 6);
const entry = [
backendId,
backend.codebase.repository?.split("/").pop(),
backend.codebase?.repository?.split("/").pop(),
location,
backend.uri,
backend.createTime,
Expand Down

0 comments on commit 0f9ccc7

Please sign in to comment.