mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
👕 Fix lint issue
This commit is contained in:
parent
639bdd2ceb
commit
c6f21804d7
|
@ -66,6 +66,10 @@ export default Vue.extend({
|
|||
},
|
||||
computed: {
|
||||
documentationUrl (): string {
|
||||
if (!this.nodeType) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (this.nodeType.documentationUrl && this.nodeType.documentationUrl.startsWith('http')) {
|
||||
return this.nodeType.documentationUrl;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue