push
github
503 of 772 branches covered (0.0%)
34 of 65 new or added lines in 14 files covered. (52.31%)
13502 existing lines in 185 files now uncovered.9060 of 34265 relevant lines covered (26.44%)
11.53 hits per line
1 |
<template>
|
|
UNCOV
2
|
<card-content-node v-bind="$props">
|
× |
UNCOV
3
|
<div class="mb-3"> |
× |
UNCOV
4
|
<api-form :entity="contentNode">
|
× |
UNCOV
5
|
<api-richtext |
× |
UNCOV
6
|
fieldname="data.html"
|
× |
UNCOV
7
|
:label="$tc('contentNode.notes.name')"
|
× |
UNCOV
8
|
rows="4"
|
× |
UNCOV
9
|
auto-grow
|
× |
UNCOV
10
|
:disabled="layoutMode || disabled"
|
× |
UNCOV
11
|
:filled="layoutMode"
|
× |
UNCOV
12
|
/> |
× |
UNCOV
13
|
</api-form> |
× |
UNCOV
14
|
</div> |
× |
UNCOV
15
|
</card-content-node> |
× |
UNCOV
16
|
</template>
|
× |
UNCOV
17
|
|
× |
UNCOV
18
|
<script> |
× |
UNCOV
19
|
import ApiForm from '@/components/form/api/ApiForm.vue' |
× |
UNCOV
20
|
import CardContentNode from '@/components/activity/CardContentNode.vue' |
× |
UNCOV
21
|
import { contentNodeMixin } from '@/mixins/contentNodeMixin.js' |
× |
UNCOV
22
|
|
× |
UNCOV
23
|
export default { |
× |
UNCOV
24
|
name: 'Notes', |
× |
UNCOV
25
|
components: { |
× |
UNCOV
26
|
CardContentNode, |
× |
UNCOV
27
|
ApiForm, |
× |
UNCOV
28
|
}, |
× |
UNCOV
29
|
mixins: [contentNodeMixin],
|
× |
UNCOV
30
|
} |
× |
UNCOV
31
|
</script> |
× |
UNCOV
32
|
|
× |
UNCOV
33
|
<style scoped></style> |
× |