@@ -158,6 +144,7 @@ export const PermissionsForm = (props: PermissionsFormProps) => {
queryType === 'update' ? permissionName : undefined
}
allRowChecks={allRowChecks || []}
+ dataSourceName={dataSourceName}
/>
))}
@@ -167,14 +154,14 @@ export const PermissionsForm = (props: PermissionsFormProps) => {
)}
{['insert', 'update'].includes(queryType) && (
)}
@@ -201,6 +188,12 @@ export const PermissionsForm = (props: PermissionsFormProps) => {
diff --git a/console/src/features/PermissionsForm/components/BackendOnly.stories.tsx b/console/src/features/PermissionsForm/components/BackendOnly.stories.tsx
index 68f8ad54ed3..686423aa666 100644
--- a/console/src/features/PermissionsForm/components/BackendOnly.stories.tsx
+++ b/console/src/features/PermissionsForm/components/BackendOnly.stories.tsx
@@ -6,7 +6,8 @@ import { Form } from '@/new-components/Form';
import { BackendOnlySection, BackEndOnlySectionProps } from './BackendOnly';
export default {
- title: 'Features/Permissions Form/Components/Backend Only Section',
+ title:
+ 'Features/Permissions Tab/Permissions Form/Components/Backend Only Section',
component: BackendOnlySection,
parameters: {
// Disable storybook for playground stories
diff --git a/console/src/features/PermissionsForm/components/ClonePermissions.stories.tsx b/console/src/features/PermissionsForm/components/ClonePermissions.stories.tsx
index 3b9de038610..c34e210a447 100644
--- a/console/src/features/PermissionsForm/components/ClonePermissions.stories.tsx
+++ b/console/src/features/PermissionsForm/components/ClonePermissions.stories.tsx
@@ -10,7 +10,8 @@ import {
} from './ClonePermissions';
export default {
- title: 'Features/Permissions Form/Components/Clone Permissions',
+ title:
+ 'Features/Permissions Tab/Permissions Form/Components/Clone Permissions',
component: ClonePermissionsSection,
decorators: [
(StoryComponent: React.FC) => (
diff --git a/console/src/features/PermissionsForm/components/ColumnPermissions.stories.tsx b/console/src/features/PermissionsForm/components/ColumnPermissions.stories.tsx
index 13c5df00367..46836e68a0d 100644
--- a/console/src/features/PermissionsForm/components/ColumnPermissions.stories.tsx
+++ b/console/src/features/PermissionsForm/components/ColumnPermissions.stories.tsx
@@ -11,7 +11,7 @@ import {
const schema = z.object({ columns: z.record(z.optional(z.boolean())) });
export default {
- title: 'Features/Permissions Form/Components/Column Section',
+ title: 'Features/Permissions Tab/Permissions Form/Components/Column Section',
component: ColumnPermissionsSection,
decorators: [
(StoryComponent: React.FC) => (
diff --git a/console/src/features/PermissionsForm/components/ColumnPermissions.tsx b/console/src/features/PermissionsForm/components/ColumnPermissions.tsx
index 4f71c809cb8..c6d7b94c730 100644
--- a/console/src/features/PermissionsForm/components/ColumnPermissions.tsx
+++ b/console/src/features/PermissionsForm/components/ColumnPermissions.tsx
@@ -99,14 +99,15 @@ export const ColumnPermissionsSection: React.FC
=
-