mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 19:48:08 +00:00
* Added characters remaining to reply box * Changed warning text for character length * Decreased font size of message
10 lines
181 B
JavaScript
10 lines
181 B
JavaScript
export const REPLY_EDITOR_MODES = {
|
|
REPLY: 'REPLY',
|
|
NOTE: 'NOTE',
|
|
};
|
|
|
|
export const CHAR_LENGTH_WARNING = {
|
|
UNDER_50: 'characters remaining',
|
|
NEGATIVE: 'characters over',
|
|
};
|