dad737021f
* Added characters remaining to reply box * Changed warning text for character length * Decreased font size of message
9 lines
181 B
JavaScript
9 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',
|
|
};
|