Fix undefined error on add-share
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> Signed-off-by: npmbuildbot-nextcloud[bot] <npmbuildbot-nextcloud[bot]@users.noreply.github.com>
This commit is contained in:
parent
bab06b9abb
commit
4b9991a4f2
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -301,9 +301,9 @@ export default {
|
||||||
* and return the newly created share component
|
* and return the newly created share component
|
||||||
*
|
*
|
||||||
* @param {Share} share the share to add to the array
|
* @param {Share} share the share to add to the array
|
||||||
* @param {Function} resolve a function to run after the share is added and its component initialized
|
* @param {Function} [resolve] a function to run after the share is added and its component initialized
|
||||||
*/
|
*/
|
||||||
addShare(share, resolve) {
|
addShare(share, resolve = () => {}) {
|
||||||
// only catching share type MAIL as link shares are added differently
|
// only catching share type MAIL as link shares are added differently
|
||||||
// meaning: not from the ShareInput
|
// meaning: not from the ShareInput
|
||||||
if (share.type === this.SHARE_TYPES.SHARE_TYPE_EMAIL) {
|
if (share.type === this.SHARE_TYPES.SHARE_TYPE_EMAIL) {
|
||||||
|
|
Loading…
Reference in New Issue