We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3659e39 commit bd80aa8Copy full SHA for bd80aa8
libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx
@@ -36,12 +36,11 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
36
const [pinned, setPinned] = useState<boolean>(props.pinned)
37
38
useEffect(() => {
39
- console.log("oopsik")
40
let enabled = false
41
// check for tags
42
if (props.tagList && props.tagList.length != 0) {
43
enabled = props.tagList.some((key) => filterCon.keyValueMap[key]?.enabled)
44
- } else if (filterCon?.keyValueMap['no tag']?.enabled) {
+ } else if (filterCon?.keyValueMap['no tag']?.enabled || !Object.keys(filterCon?.keyValueMap).length) {
45
enabled = true
46
}
47
0 commit comments