Skip to content

Commit

Permalink
Merge 7893fec into 7a5ea37
Browse files Browse the repository at this point in the history
  • Loading branch information
ethn committed May 6, 2024
2 parents 7a5ea37 + 7893fec commit b8d80c7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mod/deckorate_datasets/set/abstract/dataset_search.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def default_sort_option
end

def filter_map
%i[name bookmark wikirate_topic]
%i[name wikirate_topic bookmark]
end

def default_filter_hash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,11 @@ def ok_to_join?

event :join_group, :validate, trigger: :required do
abort :failure, "cannot join this group" unless ok_to_join?
add_item! Auth.current.name
abort :success
add_item Auth.current.name
end

event :leave_group, :validate, trigger: :required do
drop_item! Auth.current.name
abort :success
drop_item Auth.current.name
end

format do
Expand Down
2 changes: 1 addition & 1 deletion vendor/card-mods
Submodule card-mods updated 0 files

0 comments on commit b8d80c7

Please sign in to comment.