Skip to content

Commit 9107551

Browse files
committed
add todo ticket
1 parent ef5c0e2 commit 9107551

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/compass-data-modeling/src/components/diagram-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export function DiagramCard({
9191
}}
9292
></ItemActionMenu>
9393
</div>
94-
{/* TODO: Currently we do not have lastModified */}
94+
{/* TODO(COMPASS-9398): Add lastModified and namespace to the card. */}
9595
</Card>
9696
);
9797
}

packages/compass-data-modeling/src/components/saved-diagrams-list.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const sortBy = [
2727
name: 'name',
2828
label: 'Name',
2929
},
30-
// TODO: Currently we do not have lastModified.
30+
// TODO(COMPASS-9398): Currently we do not have lastModified.
3131
// {
3232
// name: 'lastModified',
3333
// label: 'Last Modified',
@@ -138,8 +138,8 @@ export const SavedDiagramsList: React.FunctionComponent<{
138138
const filteredItems = useMemo(() => {
139139
try {
140140
const regex = new RegExp(search, 'i');
141-
// Currently only searching for name. We may want to add more fields
142-
// to search for in the future.
141+
// TODO(COMPASS-9398): Currently only searching for name.
142+
// We want to include more fields like namespace.
143143
return items.filter((x) => regex.test(x.name));
144144
} catch {
145145
return items;

0 commit comments

Comments
 (0)