Every line of 'mat form field disabled' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
53 get isDisabled() { 54 let disabled = this.disabled; 55 if (this.list) { 56 if (!disabled) { 57 disabled = this.list.disabled; 58 } 59 } 60 return disabled; 61 }
Secure your code as it's written. Use Snyk Code to scan source code in minutes – no build needed – and fix issues immediately. Enable Snyk Code
25 get isDisabled() { 26 let disabled = this.disabled; 27 if (this.form) { 28 if (!disabled) { 29 disabled = this.form.disabled; 30 } 31 } 32 return disabled; 33 }