Skip to content

Commit

Permalink
Correção do warning do overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
rtenorioh committed Oct 26, 2024
1 parent cbada47 commit d2a110c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/src/components/TicketListItem/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ const TicketListItem = ({ ticket, userId, filteredTags }) => {
<Tooltip title={i18n.t("ticketsList.items.connection")}>
<Badge
className={classes.Radiusdot}
// overlap="rectangular"
overlap="rectangular"
style={{
backgroundColor: system.color.lightTheme.palette.primary,
height: 16,
Expand All @@ -533,7 +533,7 @@ const TicketListItem = ({ ticket, userId, filteredTags }) => {
<Tooltip title={i18n.t("ticketsList.items.queue")}>
<Badge
className={classes.Radiusdot}
// overlap="rectangular"
overlap="rectangular"
style={{
backgroundColor: ticket.queue?.color || "#7C7C7C",
height: 16,
Expand All @@ -554,7 +554,7 @@ const TicketListItem = ({ ticket, userId, filteredTags }) => {
<Tooltip title={i18n.t("ticketsList.items.user")}>
<Badge
className={classes.Radiusdot}
// overlap="rectangular"
overlap="rectangular"
style={{
backgroundColor: "black",
height: 16,
Expand Down

0 comments on commit d2a110c

Please sign in to comment.