Skip to content

Commit

Permalink
Fix: Wrong case in element class name
Browse files Browse the repository at this point in the history
Soould be lover.
Case mismatch is fatal in case-sensitive enivronments only.
  • Loading branch information
svale committed May 31, 2019
1 parent 29f93a2 commit 9e5b9ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/assets/DeleteTagModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Craft.DeleteTagModal = Garnish.Modal.extend({
this.userSelect = new Craft.BaseElementSelectInput({
id: 'replaceselect' + this.id,
name: 'replaceWith',
elementType: 'ether\\tagManager\\Elements\\Tag',
elementType: 'ether\\tagManager\\elements\\Tag',
criteria: {
id: idParam,
},
Expand Down

0 comments on commit 9e5b9ba

Please sign in to comment.