Skip to content

Commit

Permalink
fix: environment click sizes (#4104)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg authored Jun 5, 2024
1 parent 5155018 commit 9d1622f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/web/components/AuditLog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type AuditLogType = {
}
}

const widths = [210, 210, 210]
const widths = [210, 210, 130]
const AuditLog: FC<AuditLogType> = (props) => {
const [page, setPage] = useState(1)
const { search, searchInput, setSearchInput } = useSearchThrottle(
Expand Down Expand Up @@ -128,15 +128,13 @@ const AuditLog: FC<AuditLogType> = (props) => {
style={{ width: widths[2] }}
to={`/project/${props.projectId}/environment/${environment?.api_key}/features/`}
>
<Row>
<Tag
tag={{
color: Utils.getTagColour(colour),
label: environment?.name,
}}
className='chip--sm'
/>
</Row>
</Link>
) : (
<div className='table-column' style={{ width: widths[2] }} />
Expand Down

0 comments on commit 9d1622f

Please sign in to comment.