We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdd7af4 commit 0b887d2Copy full SHA for 0b887d2
1 file changed
src/admin/automations/automations-list/automations-list.tsx
@@ -50,7 +50,7 @@ export const AutomationsList = () => {
50
const columns = useMemo(
51
() => [
52
columnHelper.accessor("to", {
53
- header: "Name and description",
+ header: "Name and descriptions",
54
cell: ({ row }) => {
55
const tooltip = `Device (DB) ID: \n ${row?.original?.id}`
56
return (
@@ -71,7 +71,7 @@ export const AutomationsList = () => {
71
<InformationCircleSolid />
72
</Tooltip>
73
</div>
74
- <div className="min-w-[180px] whitespace-normal text-xs">
+ <div className="whitespace-normal text-xs max-w-[180px] min-w-[180px]">
75
<span>{row?.original?.description}</span>
76
77
0 commit comments