This commit is contained in:
2020-04-03 20:57:09 +00:00
parent f12cb6628e
commit 7553f1be69
3 changed files with 42 additions and 4 deletions

View File

@@ -47,6 +47,7 @@
:error-messages="form().serverErrors(this, 'name')"
ref="name"
@input="fieldValueChanged('name')"
data-cy="name"
></v-text-field>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
@@ -62,7 +63,7 @@
</v-col>
<template v-for="(item, index) in obj.editView">
<v-col :key="item.key" cols="12" sm="6" lg="4" xl="3" px-2>
<v-card>
<v-card :data-cy="'columncard:' + item.key">
<v-card-title>
{{ item.title }}
</v-card-title>
@@ -85,7 +86,9 @@
<!-- RE-ORDER CONTROL -->
<div class="d-flex justify-space-between">
<v-btn large icon @click="move('start', index)"
><v-icon large>fa-step-backward</v-icon></v-btn
><v-icon large data-cy="movestart"
>fa-step-backward</v-icon
></v-btn
>
<v-btn large icon @click="move('left', index)"
><v-icon large>fa-backward</v-icon></v-btn