From dee1a846d7efb4e51f9c5a5ebcd597b090ce246e Mon Sep 17 00:00:00 2001 From: ArtOfCode- <hello@artofcode.co.uk> Date: Mon, 14 Dec 2020 02:33:35 +0000 Subject: [PATCH] Rename --- app/views/posts/_expanded.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/posts/_expanded.html.erb b/app/views/posts/_expanded.html.erb index 42e2c2020..41c263d97 100644 --- a/app/views/posts/_expanded.html.erb +++ b/app/views/posts/_expanded.html.erb @@ -366,7 +366,7 @@ <% if is_question && post.children.length >= SiteSetting["TableOfContentsThreshold"] && SiteSetting["TableOfContentsThreshold"] != -1 %> <div class="toc has-margin-left-4" id="toc-toggle"> - <button class="toc--header" data-toggle="#toc-toggle" data-toggle-property="class" data-toggle-value="is-active">Show More</button> + <button class="toc--header" data-toggle="#toc-toggle" data-toggle-property="class" data-toggle-value="is-active">Table of Contents</button> <% sorted_answers = post.children.sort_by { |answer| answer.score }.reverse! %> <% sorted_answers.each do |answer| %> <% next if answer.deleted? && !moderator? %> -- GitLab