diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-11-15 18:25:26 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2022-11-17 10:55:26 +0100 |
commit | ab8b6cff013165ef42450cbf39f51688a3c6f091 (patch) | |
tree | a05b41a6af2bcadc92e2cf6ef60cdb40f635152b /apps/oauth2 | |
parent | b209a650cccea2c707e5e9d1b97f9b9ab4aa475e (diff) | |
download | nextcloud-server-ab8b6cff013165ef42450cbf39f51688a3c6f091.tar.gz nextcloud-server-ab8b6cff013165ef42450cbf39f51688a3c6f091.zip |
Fix missing native submit type from OAuth client add button
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/oauth2')
-rw-r--r-- | apps/oauth2/src/App.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/oauth2/src/App.vue b/apps/oauth2/src/App.vue index 8b9d2e7aff6..28b1f9182e2 100644 --- a/apps/oauth2/src/App.vue +++ b/apps/oauth2/src/App.vue @@ -54,7 +54,7 @@ type="url" name="redirectUri" :placeholder="t('oauth2', 'Redirection URI')"> - <NcButton class="inline-button"> + <NcButton native-type="submit" class="inline-button"> {{ t('oauth2', 'Add') }} </NcButton> </form> |