Skip to content

Commit 0c07c15

Browse files
committed
Fix style for script filter
and remove a console.log
1 parent 3c0d07d commit 0c07c15

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/components/GraphFilters/ScriptFilter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const ScriptFilter: FC<{
4949
const parentGraph = useReadAtom(parentFilteredGraphAtom);
5050

5151
return (
52-
<div>
52+
<div className="w-100">
5353
<div className="fs-5">
5454
{t("filters.script")} ({t(`graph.model.${filter.itemType}`)})
5555
</div>

src/core/layouts/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ const gridEnabledAtom = derivedAtom(layoutStateAtom, (value) => pick(value.quali
117117
checkOutput: true,
118118
});
119119
gridEnabledAtom.bindEffect((enabled) => {
120-
console.log("HEY", enabled);
121120
if (!enabled) return;
122121

123122
// Compute the layout quality metric when node's position changed

0 commit comments

Comments
 (0)