The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/app/message-attachments/client/renderField.html

20 lines
689 B

<template name="renderField">
{{#if field.type}}
<!-- a custom rendering is requested -->
<div class="field">
{{{specializedRendering field=field message=../..}}}
</div>
{{else}}
{{#if field.short}}
<div class="attachment-field attachment-field-short">
<div class="attachment-field-title">{{field.title}}</div>
{{{markdown field.value}}}
</div>
{{else}}
<div class="attachment-field">
<div class="attachment-field-title">{{field.title}}</div>
{{{markdown field.value}}}
</div>
{{/if}}
{{/if}}
</template>