compose_box: Improve structures around compose buttons.

This commit is contained in:
Karl Stolley
2023-11-01 12:43:48 -05:00
committed by Tim Abbott
parent e608a389af
commit 9f00b513f7
11 changed files with 24 additions and 26 deletions

View File

@@ -619,7 +619,7 @@ export function check_overflow_text() {
// expensive.
const text = compose_state.message_content();
const max_length = page_params.max_message_length;
const $indicator = $("#compose_limit_indicator");
const $indicator = $("#compose-limit-indicator");
if (text.length > max_length) {
$indicator.addClass("over_limit");