Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/assets/builds/alchemy/admin.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/assets/builds/alchemy/dark-theme.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/assets/builds/alchemy/light-theme.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/assets/builds/alchemy/theme.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/assets/builds/alchemy/welcome.css

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/assets/builds/tinymce/skins/ui/alchemy/skin.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/components/alchemy/admin/link_dialog/anchor_tab.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def fields
end

def message
render_message(:info, content_tag("p", Alchemy.t(:anchor_link_headline)))
render_message(:info, Alchemy.t(:anchor_link_headline))
end

private
Expand Down
2 changes: 1 addition & 1 deletion app/components/alchemy/admin/link_dialog/file_tab.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def fields
end

def message
render_message(:info, content_tag("h3", Alchemy.t(:choose_file_to_link)))
render_message(:info, Alchemy.t(:choose_file_to_link))
end

private
Expand Down
8 changes: 6 additions & 2 deletions app/components/alchemy/admin/tags_list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,17 @@ def call
sorted_tags.map do |tag|
content_tag("li", name: tag.name, class: filtered_by_tag?(tag) ? "active" : nil) do
link_to(
"#{tag.name} (#{tag.taggings_count})",
helpers.url_for(
search_filter_params.except(:page, :tagged_with).merge(
tagged_with: tags_for_filter(current: tag).presence
)
)
)
) do
safe_join([
tag.name,
content_tag(:span, tag.taggings_count, class: "taggings-count")
])
end
end
end.join.html_safe
end
Expand Down
Loading
Loading