Browse Source

cypress: change input to span to expose the data

test/percent
Wing-Kam Wong 2 years ago
parent
commit
675e8b9f46
  1. 2
      packages/nc-gui/components/project/spreadsheet/components/cell/DurationCell.vue
  2. 2
      packages/nc-gui/components/project/spreadsheet/components/cell/PercentCell.vue

2
packages/nc-gui/components/project/spreadsheet/components/cell/DurationCell.vue

@ -1,5 +1,5 @@
<template>
<input v-model="localValue" :placeholder="durationPlaceholder" readonly />
<span>{{ localValue }}</span>
</template>
<script>

2
packages/nc-gui/components/project/spreadsheet/components/cell/PercentCell.vue

@ -1,5 +1,5 @@
<template>
<input v-model="localValue" readonly />
<span>{{ localValue }}</span>
</template>
<script>

Loading…
Cancel
Save