diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2022-11-17 18:23:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-17 18:23:39 +0100 |
commit | 183487a52e8af983ed2bb0dfc25e4ad42b22bc7e (patch) | |
tree | 83a25ae61301508e3bbd2292dfcb78ebec1d76d5 /apps | |
parent | beba3d04e4271312171e47816621723a0373bf10 (diff) | |
parent | ab8b6cff013165ef42450cbf39f51688a3c6f091 (diff) | |
download | nextcloud-server-183487a52e8af983ed2bb0dfc25e4ad42b22bc7e.tar.gz nextcloud-server-183487a52e8af983ed2bb0dfc25e4ad42b22bc7e.zip |
Merge pull request #35186 from nextcloud/fix/oauth2-add-client-button-native-submit
Fix missing native submit type from OAuth client add button
Diffstat (limited to 'apps')
-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> |