File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/compass-data-modeling/src/components Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments