We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c031540 commit 28daffcCopy full SHA for 28daffc
src/commands/frameworks-backends-list.ts
@@ -48,7 +48,7 @@ export const command = new Command("backends:list")
48
});
49
50
function populateTable(backendsLists: gcp.ListBackendsResponse, location: string, table: any) {
51
- for (const backend of backendsLists.backends) {
+ for (const backend of backendsLists.backends ?? []) {
52
const [location, , backendId] = backend.name.split("/").slice(3, 6);
53
const entry = [
54
backendId,
0 commit comments