diff --git a/changes/changelog.d/1890.bugfix b/changes/changelog.d/1890.bugfix new file mode 100644 index 000000000..d68c08d89 --- /dev/null +++ b/changes/changelog.d/1890.bugfix @@ -0,0 +1 @@ +Fix OAuth login (#1890) diff --git a/front/src/components/auth/Authorize.vue b/front/src/components/auth/Authorize.vue index 842b3c836..c387f7cc2 100644 --- a/front/src/components/auth/Authorize.vue +++ b/front/src/components/auth/Authorize.vue @@ -108,7 +108,7 @@ const topicScopes = computed(() => { }).filter(scope => scope.read || scope.write) }) -whenever(() => props.clientId, fetchApplication) +whenever(() => props.clientId, fetchApplication, { immediate: true })