@@ -1048,7 +1065,7 @@ export default function Dashboard() {
null}
role="none"
- onClick={() => {}}
+ onClick={() => { }}
className="invisible group-hover:visible"
>
{!snapshotData &&
data
- ?.filter(
- (row) =>
- row.key?.toUpperCase().includes(searchKeys.toUpperCase()) ||
- row.tags
- ?.map((tag) => tag.name)
- .join(' ')
- ?.toUpperCase()
- .includes(searchKeys.toUpperCase()) ||
- row.comment?.toUpperCase().includes(searchKeys.toUpperCase())
- )
+ ?.filter((row) =>
+ row.key?.toUpperCase().includes(searchKeys.toUpperCase())
+ || row.tags?.map(tag => tag.name).join(" ")?.toUpperCase().includes(searchKeys.toUpperCase())
+ || row.comment?.toUpperCase().includes(searchKeys.toUpperCase()))
.filter((row) => !sharedToHide.includes(row.id))
// .filter((row) => row.value !== undefined)
.map((keyPair) => (