Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fuzzy-coins-invent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@codee-sh/medusa-plugin-automations": patch
---

Update name in the column name
4 changes: 2 additions & 2 deletions src/admin/automations/automations-list/automations-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const AutomationsList = () => {
const columns = useMemo(
() => [
columnHelper.accessor("to", {
header: "Name and description",
header: "Name and descriptions",
cell: ({ row }) => {
const tooltip = `Device (DB) ID: \n ${row?.original?.id}`
return (
Expand All @@ -71,7 +71,7 @@ export const AutomationsList = () => {
<InformationCircleSolid />
</Tooltip>
</div>
<div className="min-w-[180px] whitespace-normal text-xs">
<div className="whitespace-normal text-xs max-w-[180px] min-w-[180px]">
<span>{row?.original?.description}</span>
</div>
</div>
Expand Down