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/components/Global/TableToolbar.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/components') diff --git a/src/components/Global/TableToolbar.vue b/src/components/Global/TableToolbar.vue index 6a856b44..cb6fa240 100644 --- a/src/components/Global/TableToolbar.vue +++ b/src/components/Global/TableToolbar.vue @@ -44,7 +44,8 @@ export default { validator: (prop) => { return prop.every((action) => { return ( - action.hasOwnProperty('value') && action.hasOwnProperty('label') + Object.prototype.hasOwnProperty.call(action, 'value') && + Object.prototype.hasOwnProperty.call(action, 'label') ); }); }, -- cgit v1.2.3