mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
refactor(editor): Remove sign-in type from user dropdowns (#6926)
https://linear.app/n8n/issue/PAY-434
This commit is contained in:
parent
0913e0dbd3
commit
914dd1f046
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue