aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2022-11-17 18:23:39 +0100
committerGitHub <noreply@github.com>2022-11-17 18:23:39 +0100
commit183487a52e8af983ed2bb0dfc25e4ad42b22bc7e (patch)
tree83a25ae61301508e3bbd2292dfcb78ebec1d76d5 /apps
parentbeba3d04e4271312171e47816621723a0373bf10 (diff)
parentab8b6cff013165ef42450cbf39f51688a3c6f091 (diff)
downloadnextcloud-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.vue2
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>