Skip to content

Commit

Permalink
minor fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
aravindmd committed Dec 17, 2019
1 parent 13b7322 commit 8e7ab28
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface IRangeRule {
export class IPRangeRules extends React.Component<IIPRangeRulesProps> {
public render() {
const ipRules = this.props.ipRules || [];
const heading = 'IP Ranage Rules(' + ipRules.length + ')';
const heading = `IP Range Rules (${ipRules.length})`;
return (
<CollapsibleSection heading={heading}>
{ipRules.map(rule => (
Expand All @@ -40,7 +40,7 @@ export class IPRangeRules extends React.Component<IIPRangeRulesProps> {
) : (
<div>
<span>
{r.protocol + ':' + r.startPort} &rarr; {r.endPort}
{r.protocol}:{r.startPort} &rarr; {r.endPort}
</span>
</div>
),
Expand Down

0 comments on commit 8e7ab28

Please sign in to comment.