diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-07-26 12:21:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-26 12:21:13 +0200 |
commit | b4353c46519ffc44c30eb258210911a044bbca41 (patch) | |
tree | a1e4c6299c8814139f5c4d0d27b782b22835e9f1 /apps/comments/tests/js/filespluginSpec.js | |
parent | 7615536977eda7f3bda5c29eaa780a323c97afc7 (diff) | |
parent | bb2557c38974bea38dcc48185723b33781412cbd (diff) | |
download | nextcloud-server-b4353c46519ffc44c30eb258210911a044bbca41.tar.gz nextcloud-server-b4353c46519ffc44c30eb258210911a044bbca41.zip |
Merge pull request #33320 from nextcloud/bugfix/noid/remove-files-duplicate-dom-ids
Replace files app ids to classes
Diffstat (limited to 'apps/comments/tests/js/filespluginSpec.js')
-rw-r--r-- | apps/comments/tests/js/filespluginSpec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/comments/tests/js/filespluginSpec.js b/apps/comments/tests/js/filespluginSpec.js index a2f9750f9fc..0cfe584218e 100644 --- a/apps/comments/tests/js/filespluginSpec.js +++ b/apps/comments/tests/js/filespluginSpec.js @@ -31,9 +31,9 @@ describe('OCA.Comments.FilesPlugin tests', function() { // dummy file list var $div = $( '<div>' + - '<table id="filestable">' + + '<table class="files-filestable">' + '<thead></thead>' + - '<tbody id="fileList"></tbody>' + + '<tbody class="files-fileList"></tbody>' + '</table>' + '</div>'); $('#content').append($div); |