[Solved] RichText Editor missing in Back Office
# help-with-umbraco
c
Umb 13.0.3 Migrated content from a V11 to a V13 site. In the V13 site, all the RTE's are displaying as shown in the graphic below in the Back Office. If I click on [object Obect] the slide out appears correctly showing the expected data and the FE shows it correctly too. The Back Office template for the RTE is as follows:-
Copy code
<style>
    :host {
        cursor: pointer;
        user-select: none;
    }
    section {padding: 0 2em;font-size: 1.25rem;line-height:1.75rem;}
</style>
<section class="richTextBlock_rte"
     ng-click="block.edit()"
     ng-focus="block.focus"
     ng-bind-html="block.data.richText">
</section>
Which is the same as the V11 site which works fine. Any advice appreciated. Thanks. https://cdn.discordapp.com/attachments/1195384518287314964/1195384518417326110/image.png?ex=65b3cb96&is=65a15696&hm=ef3c26e58cc3735189f4d5c6bba33458b36b9ec5f1475d23d19f7a402701fb97&
Turns out it had been solved before. ( I did search, honest!). So the answer is to bind to block.data.richText.markup. Why is described here: https://discord-chats.umbraco.com/t/16235701/resolved-umbraco-13-block-list-custom-view-breaking-change-r
2 Views