Skip to content

Commit

Permalink
feat(provider/cf): display service tags for server group
Browse files Browse the repository at this point in the history
  • Loading branch information
Jammy Louie authored and jkschneider committed Nov 23, 2018
1 parent fd22aa0 commit 72325a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export interface ICloudFoundryServiceInstance {
name: string;
plan: string;
service: string;
tags?: string[];
}

export interface ICloudFoundryEnvVar {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ export class CloudFoundryInfoDetailsSection extends React.Component<ICloudFoundr
<dd>{service.name}</dd>
<dt>Plan</dt>
<dd>{service.plan}</dd>
<dt>Tags</dt>
{service.tags && <dd>{service.tags.join(', ')}</dd>}
</div>
);
})}
Expand Down

0 comments on commit 72325a4

Please sign in to comment.