ds4/templates/sheets/actor/components/description.hbs

20 lines
508 B
Handlebars

{{!--
SPDX-FileCopyrightText: 2021 Johannes Loher
SPDX-License-Identifier: MIT
--}}
<div class="ds4-description">
{{#if editable}}
<prose-mirror
name="system.baseInfo.description"
button="true"
editable="{{editable}}"
toggled="false"
value="{{data.system.baseInfo.description}}">
{{{data.system.baseInfo.description}}}
</prose-mirror>
{{else}}
{{{data.system.baseInfo.description}}}
{{/if}}
</div>