diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-03-22 14:03:15 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-03-22 14:03:15 +0100 |
commit | a719948c5c5480cc23f8bba9cbeba1cbf6812ade (patch) | |
tree | 49c717df727a949d63920a77eef9b16fa119874d /settings/src | |
parent | eb783d0eb7369aa2277c8bfa72a2c89bb1694aa1 (diff) | |
download | nextcloud-server-a719948c5c5480cc23f8bba9cbeba1cbf6812ade.tar.gz nextcloud-server-a719948c5c5480cc23f8bba9cbeba1cbf6812ade.zip |
Select the username input after creating a user successfully
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'settings/src')
-rw-r--r-- | settings/src/components/userList.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/settings/src/components/userList.vue b/settings/src/components/userList.vue index 04e83dd08f7..a9c7391d0e1 100644 --- a/settings/src/components/userList.vue +++ b/settings/src/components/userList.vue @@ -357,6 +357,7 @@ export default { }) .then(() => { this.resetForm() + this.$refs.newusername.focus(); }) .catch((error) => { this.loading.all = false; |