Skip to content

Commit

Permalink
fix(aws): filter out subnets with no purpose (#6383)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry committed Jan 17, 2019
1 parent d6548d5 commit 795f108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/modules/core/src/subnet/subnet.read.service.ts
Expand Up @@ -18,7 +18,7 @@ export class SubnetReader {
subnet.label += ' (deprecated)';
}
});
return subnets;
return subnets.filter(s => s.label);
});
}

Expand Down

0 comments on commit 795f108

Please sign in to comment.