mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 05:04:05 -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>
|
<div>
|
||||||
<n8n-text size="small" color="text-light">{{ email }}</n8n-text>
|
<n8n-text size="small" color="text-light">{{ email }}</n8n-text>
|
||||||
</div>
|
</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>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -74,10 +62,6 @@ export default defineComponent({
|
||||||
disabled: {
|
disabled: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
},
|
},
|
||||||
signInType: {
|
|
||||||
type: String,
|
|
||||||
required: false,
|
|
||||||
},
|
|
||||||
settings: {
|
settings: {
|
||||||
type: Object,
|
type: Object,
|
||||||
required: false,
|
required: false,
|
||||||
|
|
Loading…
Reference in a new issue