[Takedowns] Fix a couple of buttons linebreaking (#900)

This commit is contained in:
Cinder 2025-02-11 22:25:35 -08:00 committed by GitHub
parent 1879a4c1f3
commit 6c95fdd8e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -39,8 +39,8 @@ Takedown.add_posts_by_tags_preview = function (id) {
$("#takedown-add-posts-tags-warning").html(preview_text).show(); $("#takedown-add-posts-tags-warning").html(preview_text).show();
$("#takedown-add-posts-tags").prop("disabled", true); $("#takedown-add-posts-tags").prop("disabled", true);
$("#takedown-add-posts-tags-preview").hide(); $("#takedown-add-posts-tags-preview").hide();
$("#takedown-add-posts-tags-confirm").show(); $("#takedown-add-posts-tags-confirm").css("display", "inline-block");
$("#takedown-add-posts-tags-cancel").show(); $("#takedown-add-posts-tags-cancel").css("display", "inline-block");
}).fail(function (data) { }).fail(function (data) {
Utility.error(data.responseText); Utility.error(data.responseText);
}); });