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

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

(cherry picked from commit f0d380c1a779c243c0527d0bf5a2ba384e527946)
This commit is contained in:
Jorge Miguel Lobo Escalona 2022-06-30 19:35:50 +02:00 committed by Tino Vazquez
parent a7de5ee804
commit 2d84431988
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 },
]