Skip to content

Commit

Permalink
some rubocop fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Dec 5, 2023
1 parent b3425da commit 0f86260
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/helpers/additional_tags_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def manageable_tag_columns

def manageable_tag_column_values(tag)
columns = []
manageable_tag_columns.each do |_column, column_values|
manageable_tag_columns.each_value do |column_values|
cnt = column_values[:counts][tag.id]
cnt = 0 if cnt.blank?

Expand Down
2 changes: 1 addition & 1 deletion lib/additional_tags/plugin_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module AdditionalTags
module PluginVersion
VERSION = '3.1.0' unless defined? AdditionalTags::PluginVersion::VERSION
VERSION = '3.2.0-main' unless defined? AdditionalTags::PluginVersion::VERSION
end
end

0 comments on commit 0f86260

Please sign in to comment.