Merge branch 'main' of https://github.com/formbricks/formbricks into version-fix

This commit is contained in:
Piyush Gupta
2024-09-17 12:55:14 +05:30
3 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ export const OrganizationSettingsNavbar = ({
label: "Billing & Plan",
href: `/environments/${environmentId}/settings/billing`,
icon: <CreditCardIcon className="h-5 w-5" />,
hidden: !isFormbricksCloud || !isOwner,
hidden: !isFormbricksCloud || isPricingDisabled,
current: pathname?.includes("/billing"),
},
{

View File

@@ -136,7 +136,7 @@ export const generateColumns = (
size: 75,
enableResizing: false,
header: ({ table }) => (
<div className="flex w-full items-center justify-center pr-4">
<div className="flex w-full items-center justify-center pr-2">
<Checkbox
checked={table.getIsAllPageRowsSelected()}
onCheckedChange={(value) => table.toggleAllPageRowsSelected(!!value)}

View File

@@ -46,7 +46,7 @@ export const ResponseTableHeader = ({ header, setIsTableSettingsModalOpen }: Res
key={header.id}
className="group relative h-10 border border-slate-300 bg-slate-200 px-2 text-center">
<div className="flex items-center justify-between">
<div className="truncate text-left font-semibold">
<div className="w-full truncate text-left font-semibold">
{header.isPlaceholder ? null : flexRender(header.column.columnDef.header, header.getContext())}
</div>