Skip to content

Commit 1bee5a8

Browse files
authored
Merge pull request #15 from codee-sh/feat/visual-automations-bug
Feat/visual automations bug
2 parents fdd7af4 + 9d7690f commit 1bee5a8

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.changeset/fuzzy-coins-invent.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@codee-sh/medusa-plugin-automations": patch
3+
---
4+
5+
Update name in the column name

src/admin/automations/automations-list/automations-list.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export const AutomationsList = () => {
5050
const columns = useMemo(
5151
() => [
5252
columnHelper.accessor("to", {
53-
header: "Name and description",
53+
header: "Name and descriptions",
5454
cell: ({ row }) => {
5555
const tooltip = `Device (DB) ID: \n ${row?.original?.id}`
5656
return (
@@ -71,7 +71,7 @@ export const AutomationsList = () => {
7171
<InformationCircleSolid />
7272
</Tooltip>
7373
</div>
74-
<div className="min-w-[180px] whitespace-normal text-xs">
74+
<div className="whitespace-normal text-xs max-w-[180px] min-w-[180px]">
7575
<span>{row?.original?.description}</span>
7676
</div>
7777
</div>

0 commit comments

Comments
 (0)