mirror of
https://github.com/harvester/harvester-ui-extension.git
synced 2025-12-13 21:21:44 +00:00
13 lines
417 B
JavaScript
13 lines
417 B
JavaScript
import { get } from '@shell/utils/object';
|
|
import { findBy } from '@shell/utils/array';
|
|
import HarvesterResource from './harvester';
|
|
|
|
export default class HciKeypair extends HarvesterResource {
|
|
get stateDisplay() {
|
|
const conditions = get(this, 'status.conditions');
|
|
const status = (findBy(conditions, 'type', 'validated') || {}).status ;
|
|
|
|
return status === 'True' ? 'Validated' : 'Not Validated';
|
|
}
|
|
}
|