@@ -49,9 +49,7 @@
{{ item.name }}
-
-
@@ -85,48 +83,46 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -225,6 +221,7 @@ const newUsersList = computed(() => {
name: user.displayName ?? '',
email: user.email ?? '',
createdOn: user.createdOn,
+ action: '',
};
});
});
@@ -247,7 +244,7 @@ const headings = [
];
//Names of the columns to be modified by this component
-const colNames = ['name', 'createdOn'];
+const colNames = ['name', 'createdOn', 'action'];
// Send Invitation through Email
const sendInvitation = useMutation(InviteNewUserDocument);
diff --git a/packages/hoppscotch-ui/src/components/smart/Table.vue b/packages/hoppscotch-ui/src/components/smart/Table.vue
index 9e61fcc6f..f825274b0 100644
--- a/packages/hoppscotch-ui/src/components/smart/Table.vue
+++ b/packages/hoppscotch-ui/src/components/smart/Table.vue
@@ -21,27 +21,26 @@