Skip to content

Commit

Permalink
fix(console): correct helm push guide (#1851)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo Ryu authored Apr 20, 2022
1 parent 2c472e3 commit 8ff21e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export class ChartUsageGuideDialog extends React.Component<ChartUsageGuideDialog
<Clip target="#pushHelmDir" className="copy-btn">
<Trans>复制</Trans>
</Clip>
<p id="pushHelmDir">{`helm push ./myapp ${this.props.chartGroupName}`}</p>
<p id="pushHelmDir">{`helm cm-push ./myapp ${this.props.chartGroupName}`}</p>
</code>
</li>
<li>
Expand All @@ -171,7 +171,7 @@ export class ChartUsageGuideDialog extends React.Component<ChartUsageGuideDialog
<Clip target="#pushHelmTar" className="copy-btn">
<Trans>复制</Trans>
</Clip>
<p id="pushHelmTar">{`helm push myapp-1.0.1.tgz ${this.props.chartGroupName}`}</p>
<p id="pushHelmTar">{`helm cm-push myapp-1.0.1.tgz ${this.props.chartGroupName}`}</p>
</code>
</li>
<li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export class ChartTablePanel extends React.Component<RootProps, any> {
<Clip target="#pushHelmDir" className="copy-btn">
<Trans>复制</Trans>
</Clip>
<p id="pushHelmDir">{`$ helm push ./myapp ${this.props.route.queries['cgName']}`}</p>
<p id="pushHelmDir">{`$ helm cm-push ./myapp ${this.props.route.queries['cgName']}`}</p>
</code>
</li>
<li>
Expand All @@ -231,7 +231,7 @@ export class ChartTablePanel extends React.Component<RootProps, any> {
<Clip target="#pushHelmTar" className="copy-btn">
<Trans>复制</Trans>
</Clip>
<p id="pushHelmTar">{`$ helm push myapp-1.0.1.tgz ${this.props.route.queries['cgName']}`}</p>
<p id="pushHelmTar">{`$ helm cm-push myapp-1.0.1.tgz ${this.props.route.queries['cgName']}`}</p>
</code>
</li>
<li>
Expand Down

0 comments on commit 8ff21e7

Please sign in to comment.