fix(files): disable `Unshare` until proper fix

Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
pull/43152/head
John Molakvoæ 2024-01-26 18:09:37 +07:00
parent cfef434019
commit d06ed4d7cb
No known key found for this signature in database
GPG Key ID: 60C25B8C072916CF
2 changed files with 9 additions and 7 deletions

@ -71,10 +71,11 @@ describe('Delete action conditions tests', () => {
expect(action.displayName([file], trashbinView)).toBe('Delete permanently')
})
test('Shared node values', () => {
jest.spyOn(auth, 'getCurrentUser').mockReturnValue(null)
expect(action.displayName([file2], view)).toBe('Unshare')
})
// TODO: Fix this test
// test('Shared node values', () => {
// jest.spyOn(auth, 'getCurrentUser').mockReturnValue(null)
// expect(action.displayName([file2], view)).toBe('Unshare')
// })
test('Shared and owned nodes values', () => {
expect(action.displayName([file, file2], view)).toBe('Delete and unshare')

@ -46,9 +46,10 @@ export const action = new FileAction({
return t('files', 'Delete and unshare')
}
if (isAllUnshare(nodes)) {
return t('files', 'Unshare')
}
// Temporary disabled until fixed on 28.0.3
// if (isAllUnshare(nodes)) {
// return t('files', 'Unshare')
// }
return view.id === 'trashbin'
? t('files', 'Delete permanently')