refactor(editor): Remove sign-in type from user dropdowns (#6926)

https://linear.app/n8n/issue/PAY-434
This commit is contained in:
Iván Ovejero 2023-08-17 10:29:37 +02:00 committed by GitHub
parent 0913e0dbd3
commit 914dd1f046
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,18 +21,6 @@
<div>
<n8n-text size="small" color="text-light">{{ email }}</n8n-text>
</div>
<div v-if="!isOwner">
<n8n-text v-if="signInType" size="small" color="text-light">
Sign-in type:
{{
isSamlLoginEnabled
? settings?.allowSSOManualLogin
? $locale.baseText('settings.sso') + ' + ' + signInType
: $locale.baseText('settings.sso')
: signInType
}}
</n8n-text>
</div>
</div>
</div>
</template>
@ -74,10 +62,6 @@ export default defineComponent({
disabled: {
type: Boolean,
},
signInType: {
type: String,
required: false,
},
settings: {
type: Object,
required: false,