Skip to content

Commit

Permalink
fix(files) Css typo / Call .action of local element
Browse files Browse the repository at this point in the history
#controls is replaced by .files-controls since v25
  • Loading branch information
tpayen authored Jan 27, 2023
1 parent 4e7dc50 commit fe53c22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files/js/filelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -3859,7 +3859,7 @@
this._newFileMenu = new OCA.Files.NewFileMenu({
fileList: this
});
this.$el.find('#controls .actions').append(this._newFileMenu.$el);
this.$el.find('.files-controls .actions').append(this._newFileMenu.$el);
}
this._newFileMenu.showAt($target);

Expand Down

0 comments on commit fe53c22

Please sign in to comment.