Skip to content

Commit

Permalink
fix(console): correct helm pull guide (#1852)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo Ryu committed Apr 20, 2022
1 parent 8ff21e7 commit 1bc5262
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -182,7 +182,7 @@ export class ChartUsageGuideDialog extends React.Component<ChartUsageGuideDialog
<Clip target="#downloadChart" className="copy-btn">
<Trans>复制</Trans>
</Clip>
<p id="downloadChart">{`helm fetch ${this.props.chartGroupName}/myapp`}</p>
<p id="downloadChart">{`helm pull ${this.props.chartGroupName}/myapp`}</p>
</code>
</li>
<li>
Expand All @@ -193,7 +193,7 @@ export class ChartUsageGuideDialog extends React.Component<ChartUsageGuideDialog
<Clip target="#downloadSChart" className="copy-btn">
<Trans>复制</Trans>
</Clip>
<p id="downloadSChart">{`helm fetch ${this.props.chartGroupName}/myapp --version 1.0.1`}</p>
<p id="downloadSChart">{`helm pull ${this.props.chartGroupName}/myapp --version 1.0.1`}</p>
</code>
</li>
</ul>
Expand Down
Expand Up @@ -242,7 +242,7 @@ export class ChartTablePanel extends React.Component<RootProps, any> {
<Clip target="#downloadChart" className="copy-btn">
<Trans>复制</Trans>
</Clip>
<p id="downloadChart">{`$ helm fetch ${this.props.route.queries['cgName']}/myapp`}</p>
<p id="downloadChart">{`$ helm pull ${this.props.route.queries['cgName']}/myapp`}</p>
</code>
</li>
<li>
Expand All @@ -253,7 +253,7 @@ export class ChartTablePanel extends React.Component<RootProps, any> {
<Clip target="#downloadSChart" className="copy-btn">
<Trans>复制</Trans>
</Clip>
<p id="downloadSChart">{`$ helm fetch ${this.props.route.queries['cgName']}/myapp --version 1.0.1`}</p>
<p id="downloadSChart">{`$ helm pull ${this.props.route.queries['cgName']}/myapp --version 1.0.1`}</p>
</code>
</li>
</ul>
Expand Down

0 comments on commit 1bc5262

Please sign in to comment.