Skip to content

Commit

Permalink
feat: show CLIAPIVersion and ControllerAPIVersion
Browse files Browse the repository at this point in the history
Signed-off-by: Yi-Ya Chen <yiya.chen@suse.com>
  • Loading branch information
houhoucoop committed Dec 2, 2024
1 parent 5113aa2 commit 9fcce3f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/routes/engineimage/detail/EngineImageInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@ function EngineImageInfo({ selectedEngineImage }) {
<span className={styles.label}>Default:</span>
<span>{selectedEngineImage.default ? 'True' : 'False'}</span>
</div>
<div className={styles.row}>
<span className={styles.label}>CLIAPIVersion:</span>
<span>{selectedEngineImage.cliAPIVersion}</span>
</div>
<div className={styles.row}>
<span className={styles.label}>ControllerAPIVersion:</span>
<span>{selectedEngineImage.controllerAPIVersion}</span>
</div>
<div className={styles.row}>
<span className={styles.label}>Image:</span>
<span>{selectedEngineImage.image}</span>
Expand Down

0 comments on commit 9fcce3f

Please sign in to comment.