- {isPlatformConnection && (
-
-
-
-
-
-
- {t(
- 'This connection is global and can be managed in the platform admin',
- )}
-
-
-
- )}
+ {
+ accessorKey: 'displayName',
+ size: 200,
+ header: ({ column }) => (
+
+ ),
+ cell: ({ row }) => {
+ const isPlatformConnection = row.original.scope === 'PLATFORM';
+ return (
+
+ {isPlatformConnection && (
+
+
+
+
+
+
+ {t(
+ 'This connection is global and can be managed in the platform admin',
+ )}
+
+
+
+ )}
-
-
-
-
- );
- },
- },
- {
- accessorKey: 'status',
- size: 120,
- header: ({ column }) => (
-
- ),
- cell: ({ row }) => {
- const status = row.original.status;
- const { variant, icon: Icon } =
- appConnectionUtils.getStatusIcon(status);
- return (
-
-
-
- );
- },
- },
- {
- accessorKey: 'updated',
- size: 150,
- header: ({ column }) => (
-
- ),
- cell: ({ row }) => {
- return (
-
-
-
- );
+
+
+ {row.original.displayName}
+
+
+
+ );
+ },
},
- },
- {
- accessorKey: 'owner',
- size: 180,
- header: ({ column }) => (
- {
- navigate(
- `/flows?connectionExternalId=${row.original.externalId}`,
- );
- }}
- >
- {row.original.flowIds?.length}
-
- );
+ {
+ accessorKey: 'updated',
+ size: 150,
+ header: ({ column }) => (
+