mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
🐛 Prevent scopes text overflow
This commit is contained in:
parent
83b422582e
commit
dc8d266fe4
|
@ -42,7 +42,7 @@
|
||||||
adjustToNumber: scopes.length,
|
adjustToNumber: scopes.length,
|
||||||
interpolate: {
|
interpolate: {
|
||||||
activeCredential,
|
activeCredential,
|
||||||
scopes: scopes.join(' '),
|
scopes: scopesText,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
)"
|
)"
|
||||||
|
@ -192,6 +192,9 @@ export default mixins(
|
||||||
|
|
||||||
return this.nodeType.properties;
|
return this.nodeType.properties;
|
||||||
},
|
},
|
||||||
|
scopesText(): string {
|
||||||
|
return this.scopes.map(scope => scope.replace(/\//g, '/<wbr>')).join('<br>');
|
||||||
|
},
|
||||||
},
|
},
|
||||||
props: {
|
props: {
|
||||||
eventBus: {
|
eventBus: {
|
||||||
|
|
Loading…
Reference in a new issue