From efd7c88404fc58d0dc8cd495ba2e33b9e9034e0b Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Fri, 30 Oct 2020 09:32:06 -0700 Subject: Fix eslint no-prototype-builtins errors Made updates to TableToolbar, ModalAddRoleGroup, and ModalUploadCertificate components. https://eslint.org/docs/rules/no-prototype-builtins Signed-off-by: Yoshie Muranaka Change-Id: Ic143cd244b288bc089a9416699d7c3d4349a500c --- src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue') diff --git a/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue b/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue index 070dd0dc..50df9a42 100644 --- a/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue +++ b/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue @@ -83,7 +83,8 @@ export default { validator: (prop) => { if (prop === null) return true; return ( - prop.hasOwnProperty('type') && prop.hasOwnProperty('certificate') + Object.prototype.hasOwnProperty.call(prop, 'type') && + Object.prototype.hasOwnProperty.call(prop, 'certificate') ); }, }, -- cgit v1.2.3