From bd038c88a3e09369e0dc27f3d3b826069116270a Mon Sep 17 00:00:00 2001 From: Louis Chemineau Date: Tue, 20 Sep 2022 14:35:37 +0200 Subject: [PATCH] Disable downloading files from albums as it it not supported yet Signed-off-by: Louis Chemineau --- cypress/e2e/shared_albums.cy.js | 6 +++--- src/views/SharedAlbumContent.vue | 20 ++++++++++---------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/cypress/e2e/shared_albums.cy.js b/cypress/e2e/shared_albums.cy.js index 283974ba..423bc636 100644 --- a/cypress/e2e/shared_albums.cy.js +++ b/cypress/e2e/shared_albums.cy.js @@ -99,21 +99,21 @@ describe('Manage shared albums', () => { cy.logout() }) - it('Download a file from a shared album', () => { + xit('Download a file from a shared album', () => { cy.goToSharedAlbum('shared_album_test2') cy.selectMedia([0]) cy.downloadSelection() cy.unselectMedia([0]) }) - it('Download multiple files from a shared album', () => { + xit('Download multiple files from a shared album', () => { cy.goToSharedAlbum('shared_album_test2') cy.selectMedia([1, 2]) cy.downloadSelection() cy.unselectMedia([1, 2]) }) - it('Download all files from a shared album', () => { + xit('Download all files from a shared album', () => { cy.goToSharedAlbum('shared_album_test2') cy.downloadAllFiles() }) diff --git a/src/views/SharedAlbumContent.vue b/src/views/SharedAlbumContent.vue index 32613f00..fe6a65f8 100644 --- a/src/views/SharedAlbumContent.vue +++ b/src/views/SharedAlbumContent.vue @@ -55,11 +55,11 @@ - - + --> @@ -70,9 +70,9 @@