Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE committed Dec 12, 2024
1 parent a18dedd commit 3429f59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/src/layout/navigation-3000/Navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,7 @@
.SidebarListItem__rename {
flex-direction: column;
justify-content: center;

// Pseudo-elements don't work on inputs, so we use a wrapper div
background: var(--bg-light);

Expand Down
3 changes: 2 additions & 1 deletion posthog/hogql/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,5 @@ def __init__(self):
self.table_names = set()

def visit_join_expr(self, node: ast.JoinExpr):
self.table_names.add(node.table.chain[0])
if isinstance(node.table, ast.Field):
self.table_names.add(node.table.chain[0])

0 comments on commit 3429f59

Please sign in to comment.