1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

F #5877: add data-cy (#2200)

This commit is contained in:
Jorge Miguel Lobo Escalona 2022-06-30 19:35:50 +02:00 committed by GitHub
parent 4150c8e21d
commit f0d380c1a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View File

@ -228,7 +228,7 @@ const Actions = () => {
icon: Group,
selected: true,
color: 'secondary',
dataCy: 'vm-ownership',
dataCy: 'marketapp-ownership',
options: [
{
accessor: MARKETPLACE_APP_ACTIONS.CHANGE_OWNER,

View File

@ -82,8 +82,13 @@ const InformationPanel = ({ app = {}, actions }) => {
{
name: T.State,
value: <StatusChip text={stateName} stateColor={stateColor} />,
dataCy: 'state',
},
{
name: T.Locked,
value: levelLockToString(LOCK?.LOCKED),
dataCy: 'locked',
},
{ name: T.Locked, value: levelLockToString(LOCK?.LOCKED) },
{ name: T.Format, value: FORMAT },
{ name: T.Version, value: VERSION },
]