1
0
mirror of https://gitlab.com/bramw/baserow.git synced 2024-11-25 00:46:46 +00:00
bramw_baserow/web-frontend/modules/database/components/row/RowHistoryFieldBoolean.vue

40 lines
851 B
Vue

<template>
<div class="row-history-entry__field-content">
<div v-if="entry.before[fieldIdentifier]">
<div
class="row-history-entry__diff row-history-entry__diff--removed row-history-field-boolean__diff"
>
<i class="iconoir-check"></i>
</div>
</div>
<div v-if="entry.after[fieldIdentifier]">
<div
class="row-history-entry__diff row-history-entry__diff--added row-history-field-boolean__diff"
>
<i class="iconoir-check"></i>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'RowHistoryFieldBoolean',
props: {
entry: {
type: Object,
required: true,
},
fieldIdentifier: {
type: String,
required: true,
},
field: {
type: Object,
required: false,
default: null,
},
},
}
</script>