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 <yoshiemuranaka@gmail.com>
Change-Id: Ic143cd244b288bc089a9416699d7c3d4349a500c
diff --git a/.eslintrc.js b/.eslintrc.js
index c404a6d..3901f22 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -5,7 +5,6 @@
   },
   extends: ['plugin:vue/recommended', 'eslint:recommended', '@vue/prettier'],
   rules: {
-    'no-prototype-builtins': 'warn',
     'no-console': 'off',
     'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
     'prettier/prettier': [
diff --git a/src/components/Global/TableToolbar.vue b/src/components/Global/TableToolbar.vue
index 6a856b4..cb6fa24 100644
--- a/src/components/Global/TableToolbar.vue
+++ b/src/components/Global/TableToolbar.vue
@@ -44,7 +44,8 @@
       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')
           );
         });
       },
diff --git a/src/views/AccessControl/Ldap/ModalAddRoleGroup.vue b/src/views/AccessControl/Ldap/ModalAddRoleGroup.vue
index b9b1f5a..b485ead 100644
--- a/src/views/AccessControl/Ldap/ModalAddRoleGroup.vue
+++ b/src/views/AccessControl/Ldap/ModalAddRoleGroup.vue
@@ -92,8 +92,8 @@
       validator: (prop) => {
         if (prop === null) return true;
         return (
-          prop.hasOwnProperty('groupName') &&
-          prop.hasOwnProperty('groupPrivilege')
+          Object.prototype.hasOwnProperty.call(prop, 'groupName') &&
+          Object.prototype.hasOwnProperty.call(prop, 'groupPrivilege')
         );
       },
     },
diff --git a/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue b/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue
index 070dd0d..50df9a4 100644
--- a/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue
+++ b/src/views/AccessControl/SslCertificates/ModalUploadCertificate.vue
@@ -83,7 +83,8 @@
       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')
         );
       },
     },