Skip to content

Commit 263cbc3

Browse files
authored
Merge pull request #576 from Floppy/fix-tag-deletion
Fix removal of tags when setting preview file for a model
2 parents dbc885a + 9f4bf70 commit 263cbc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/controllers/models_controller.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ def update_tags(tags)
2323

2424
def update
2525
hash = model_params
26-
tags = hash.delete(:tags) { |t| "" }
26+
tags = hash.delete(:tags)
2727

2828
if @model.update(hash)
29-
update_tags(tags.split(","))
29+
update_tags(tags.split(",")) if tags
3030
end
3131

3232
redirect_to [@library, @model]

0 commit comments

Comments
 (0)