This commit is contained in:
j3d1 2024-06-15 15:17:44 +02:00
parent ed9e1d8633
commit da310bfa9b
2 changed files with 1 additions and 8 deletions

View file

@ -71,13 +71,6 @@
<div class="card-header"> <div class="card-header">
{ item.subject } { item.subject }
</div> </div>
<div class="card-body">
<p>{{ item }}</p>
<!--button class="button">👏 2</button>
<button class="button | square">
<font-awesome-icon icon="user"/>
</button-->
</div>
<!--div class="card-footer" v-if="item.attachments.length"> <!--div class="card-footer" v-if="item.attachments.length">
<ul> <ul>
<li v-for="attachment in item.attachments" @click="openLightboxModalWith(attachment)"> <li v-for="attachment in item.attachments" @click="openLightboxModalWith(attachment)">

View file

@ -39,7 +39,7 @@ export default {
this.selection.direction = sel.direction; this.selection.direction = sel.direction;
this.selection.type = sel.type; this.selection.type = sel.type;
} }
this.$emit('input', event.target.innerText.replace(/&nbsp;/g, ' ')); this.$emit('input', event.target.innerText.replace(/&nbsp;/g, ' ').replace(/\xA0/g, ' '));
}, },
calculateOffset(container, node, offset) { calculateOffset(container, node, offset) {
let position = 0; let position = 0;