Set char limit on rich text (#662)
* Set char limit on rich text * richtext placeholder
This commit is contained in:
@@ -552,7 +552,7 @@
|
||||
@update:model-value="onFieldHelpPositionChange"
|
||||
/>
|
||||
|
||||
<template v-if="['text', 'number', 'url', 'email'].includes(field.type)">
|
||||
<template v-if="['text', 'rich_text', 'number', 'url', 'email'].includes(field.type)">
|
||||
<text-input
|
||||
name="max_char_limit"
|
||||
native-type="number"
|
||||
@@ -841,6 +841,9 @@ export default {
|
||||
multi_lines: false,
|
||||
max_char_limit: 2000
|
||||
},
|
||||
rich_text: {
|
||||
max_char_limit: 2000
|
||||
},
|
||||
email: {
|
||||
max_char_limit: 2000
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user