Skip to content

Commit 0f9ccc7

Browse files
authored
allows for an undefined codebase property (#6631)
1 parent 7795425 commit 0f9ccc7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/apphosting-backends-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function populateTable(backends: apphosting.Backend[], table: any) {
4141
const [location, , backendId] = backend.name.split("/").slice(3, 6);
4242
const entry = [
4343
backendId,
44-
backend.codebase.repository?.split("/").pop(),
44+
backend.codebase?.repository?.split("/").pop(),
4545
location,
4646
backend.uri,
4747
backend.createTime,

0 commit comments

Comments
 (0)