Skip to content

Commit 8cdbbbe

Browse files
authored
Merge pull request #37708 from nextcloud/backport/37697/stable26
[stable26] Fix button text
2 parents f341d63 + b474e85 commit 8cdbbbe

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/federatedfilesharing/js/external.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@
6565
var $buttons = $dialog.find('button');
6666
// hack the buttons
6767
$dialog.find('.ui-icon').remove();
68-
$buttons.eq(0).text(t('core', 'Cancel'));
69-
$buttons.eq(1).text(t('files_sharing', 'Add remote share'));
68+
$buttons.eq(1).text(t('core', 'Cancel'));
69+
$buttons.eq(2).text(t('files_sharing', 'Add remote share'));
7070
};
7171

7272
OCA.Sharing.ExternalShareDialogPlugin = {

0 commit comments

Comments
 (0)