Skip to content

Commit

Permalink
Merge pull request #723 from akto-api-security/fix/frontend_bugs_in_ui
Browse files Browse the repository at this point in the history
fixed the collection name width on inventory page and fixed test run …
  • Loading branch information
notshivansh authored Nov 17, 2023
2 parents c213891 + 3b5d472 commit 8dd2dbd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import dashboardFunc from "../../transform"
import settingsRequests from "../../settings/api"
import OpenApiSpec from "../OpenApiSpec"
import PersistStore from "../../../../main/PersistStore"
import TooltipText from "../../../components/shared/TooltipText"

const headers = [
{
Expand Down Expand Up @@ -378,7 +379,9 @@ function ApiEndpoints() {
return (
<PageWithMultipleCards
title={
<Text variant='headingLg' truncate>{pageTitle}</Text>
<Box maxWidth="35vw">
<TooltipText tooltip={pageTitle} text={pageTitle} textProps={{variant:'headingLg'}} />
</Box>
}
backUrl="/dashboard/observe/inventory"
secondaryActions={
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ function SingleTestRunPage() {
await fetchData(true);
}
loadData();
}, [])
}, [subCategoryMap])

const promotedBulkActions = (selectedDataHexIds) => {
return [
Expand Down

0 comments on commit 8dd2dbd

Please sign in to comment.