[WEB-5436] feat: work item preview (#8121)
This commit is contained in:
parent
f34ca18a34
commit
2e6225a883
6 changed files with 247 additions and 107 deletions
|
|
@ -36,7 +36,7 @@ type TIssueTypeIdentifier = {
|
|||
size?: "xs" | "sm" | "md" | "lg";
|
||||
};
|
||||
|
||||
export const IssueTypeIdentifier: FC<TIssueTypeIdentifier> = observer((props) => <></>);
|
||||
export const IssueTypeIdentifier: FC<TIssueTypeIdentifier> = observer((_props) => <></>);
|
||||
|
||||
type TIdentifierTextProps = {
|
||||
identifier: string;
|
||||
|
|
@ -94,7 +94,7 @@ export const IssueIdentifier: React.FC<TIssueIdentifierProps> = observer((props)
|
|||
if (!shouldRenderIssueID) return null;
|
||||
|
||||
return (
|
||||
<div className="flex items-center space-x-2">
|
||||
<div className="shrink-0 flex items-center space-x-2">
|
||||
<IdentifierText
|
||||
identifier={`${projectIdentifier}-${issueSequenceId}`}
|
||||
enableClickToCopyIdentifier={enableClickToCopyIdentifier}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue