posts: move artist tags to the top of the tag list.

This commit is contained in:
evazion
2020-08-17 17:09:00 -05:00
parent 937653e519
commit 975d42c9ac

View File

@@ -235,12 +235,12 @@ module Danbooru
# Sets the order of the split tag header list (presenters/tag_set_presenter.rb)
def split_tag_header_list
@split_tag_header_list ||= ["copyright", "character", "artist", "general", "meta"]
@split_tag_header_list ||= ["artist", "copyright", "character", "general", "meta"]
end
# Sets the order of the categorized tag string (presenters/post_presenter.rb)
def categorized_tag_list
@categorized_tag_list ||= ["copyright", "character", "artist", "meta", "general"]
@categorized_tag_list ||= ["artist", "copyright", "character", "meta", "general"]
end
# Sets the order of the related tag buttons (javascripts/related_tag.js)