mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 01:06:23 +02:00
fix: register linear tool UIs, fix broken notion imports and delete issue state field
This commit is contained in:
parent
e79ec9234a
commit
8711ac82a5
2 changed files with 16 additions and 17 deletions
|
|
@ -30,8 +30,7 @@ interface InterruptResult {
|
|||
id: string;
|
||||
identifier: string;
|
||||
title: string;
|
||||
url?: string;
|
||||
current_state?: string;
|
||||
state?: string;
|
||||
document_id?: number;
|
||||
indexed_at?: string;
|
||||
};
|
||||
|
|
@ -182,18 +181,8 @@ function ApprovalCard({
|
|||
<div className="font-medium">
|
||||
{issue.identifier}: {issue.title}
|
||||
</div>
|
||||
{issue.current_state && (
|
||||
<div className="text-xs text-muted-foreground">{issue.current_state}</div>
|
||||
)}
|
||||
{issue.url && (
|
||||
<a
|
||||
href={issue.url}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="text-xs text-primary hover:underline"
|
||||
>
|
||||
Open in Linear ↗
|
||||
</a>
|
||||
{issue.state && (
|
||||
<div className="text-xs text-muted-foreground">{issue.state}</div>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue