Skip to content

Commit

Permalink
feat(environment-action-toolbar): update log icon (#1754)
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiBonnet authored Nov 13, 2024
1 parent 7a011a0 commit 7a9fa1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ exports[`EnvironmentActionToolbar should match manage deployment snapshot 1`] =
>
<i
aria-hidden="true"
class="fa-solid fa-scroll "
class="fa-solid fa-timeline "
/>
</a>
<button
Expand Down Expand Up @@ -221,7 +221,7 @@ exports[`EnvironmentActionToolbar should match other actions snapshot 1`] = `
>
<i
aria-hidden="true"
class="fa-solid fa-scroll "
class="fa-solid fa-timeline "
/>
</a>
<button
Expand Down Expand Up @@ -278,7 +278,7 @@ exports[`EnvironmentActionToolbar should match other actions snapshot 1`] = `
>
<i
aria-hidden="true"
class="fa-solid fa-scroll text-sm mr-3 text-brand-500"
class="fa-solid fa-timeline text-sm mr-3 text-brand-500"
/>
Logs
</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function MenuOtherActions({ state, environment }: { state: StateEnum; environmen
</ActionToolbar.Button>
</DropdownMenu.Trigger>
<DropdownMenu.Content>
<DropdownMenu.Item icon={<Icon iconName="scroll" />} asChild>
<DropdownMenu.Item icon={<Icon iconName="timeline" />} asChild>
<Link
className="gap-0"
to={ENVIRONMENT_LOGS_URL(environment.organization.id, environment.project.id, environment.id)}
Expand Down Expand Up @@ -237,7 +237,7 @@ export function EnvironmentActionToolbar({ environment }: EnvironmentActionToolb
to={ENVIRONMENT_LOGS_URL(environment.organization.id, environment.project.id, environment.id)}
state={{ prevUrl: pathname }}
>
<Icon iconName="scroll" />
<Icon iconName="timeline" />
</Link>
</ActionToolbar.Button>
</Tooltip>
Expand Down

0 comments on commit 7a9fa1c

Please sign in to comment.