diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-09 15:38:33 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-07-12 20:14:30 +0200 |
commit | 967b3848e0e2eeb7ca5447599769fd9fbf825069 (patch) | |
tree | 2711b6de5aa29c96d30c79de16f29fd72aa1396e /apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue | |
parent | bc5839e5b5e2192ed7d2dd2173ab5ca72b1d8ebc (diff) | |
download | nextcloud-server-967b3848e0e2eeb7ca5447599769fd9fbf825069.tar.gz nextcloud-server-967b3848e0e2eeb7ca5447599769fd9fbf825069.zip |
fix(files_sharing): phpunit & openapi fixes
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue')
-rw-r--r-- | apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue b/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue index 1087fdd5a06..651f2a52efe 100644 --- a/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue +++ b/apps/files_sharing/src/components/NewFileRequestDialog/NewFileRequestDialogDatePassword.vue @@ -37,7 +37,7 @@ :value="expirationDate" name="expirationDate" type="date" - @update:value="$emit('update:expirationDate', $event)"/> + @update:value="$emit('update:expirationDate', $event)" /> </fieldset> <!-- Password --> @@ -96,7 +96,7 @@ import GeneratePassword from '../../utils/GeneratePassword' const sharingConfig = new Config() export default defineComponent({ - name: 'FileRequestDatePassword', + name: 'NewFileRequestDialogDatePassword', components: { IconPasswordGen, @@ -207,7 +207,6 @@ export default defineComponent({ this.$emit('update:password', null) }, - async onGeneratePassword() { await this.generatePassword() this.showPassword() |