Skip to content

Commit

Permalink
fix(catalog): Stack subclassing wrong object
Browse files Browse the repository at this point in the history
  • Loading branch information
paveldedik committed Jun 26, 2024
1 parent 157e2dd commit 82c7b43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ludic/catalog/layouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from ludic.types import AnyChildren


class Stack(div):
class Stack(Block):
"""Stack is a block component which renders its children with a space between them.
Example usage:
Expand Down
1 change: 1 addition & 0 deletions ludic/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from .attrs import GlobalAttrs
from .base import BaseElement
from .elements import Blank as Blank
from .elements import Element, ElementStrict
from .html import div, span
from .styles import Theme, get_default_theme
Expand Down

0 comments on commit 82c7b43

Please sign in to comment.