Skip to content

Commit

Permalink
Style/UI improvements (#3269)
Browse files Browse the repository at this point in the history
* style: update `Workspace Issues` -> `All Issues` header.

* style: fix issue activity text overflow issue.
  • Loading branch information
prateekshourya29 authored Dec 28, 2023
1 parent 685e62a commit 71bf049
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion web/components/headers/global-issues.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const GlobalIssuesHeader: React.FC<Props> = observer((props) => {
<PhotoFilterIcon className="h-4 w-4 text-custom-text-300" />
)
}
label={`Workspace ${activeLayout === "spreadsheet" ? "Issues" : "Views"}`}
label={`All ${activeLayout === "spreadsheet" ? "Issues" : "Views"}`}
/>
</Breadcrumbs>
</div>
Expand Down
6 changes: 3 additions & 3 deletions web/components/issues/peek-overview/activity/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const IssueActivityCard: FC<IIssueActivityCard> = (props) => {
</div>
</div>
<div className="min-w-0 flex-1 py-3">
<div className="break-words text-xs text-custom-text-200">
<div className="flex gap-1 break-words text-xs text-custom-text-200">
{activityItem.field === "archived_at" && activityItem.new_value !== "restore" ? (
<span className="text-gray font-medium">Plane</span>
) : activityItem.actor_detail.is_bot ? (
Expand All @@ -101,8 +101,8 @@ export const IssueActivityCard: FC<IIssueActivityCard> = (props) => {
: activityItem.actor_detail.display_name}
</span>
</Link>
)}{" "}
{message}{" "}
)}
{message}
<Tooltip
tooltipContent={`${renderLongDateFormat(activityItem.created_at)}, ${render24HourFormatTime(
activityItem.created_at
Expand Down

0 comments on commit 71bf049

Please sign in to comment.