mirror of
https://gitlab.com/bramw/baserow.git
synced 2024-11-24 16:36:46 +00:00
16 lines
322 B
Vue
16 lines
322 B
Vue
<template functional>
|
|
<div class="card-text">
|
|
{{ $options.methods.formatValue(props.field, props.value) }}
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import durationField from '@baserow/modules/database/mixins/durationField'
|
|
|
|
export default {
|
|
height: 16,
|
|
name: 'RowCardFieldDuration',
|
|
mixins: [durationField],
|
|
}
|
|
</script>
|