diff --git a/projects/demo/src/components/dropdown/index.html b/projects/demo/src/components/dropdown/index.html
index 6005e3304011..a9227631ae0c 100644
--- a/projects/demo/src/components/dropdown/index.html
+++ b/projects/demo/src/components/dropdown/index.html
@@ -13,7 +13,7 @@
> = [];
- public open = false;
-
- public align: TuiDropdownAlign = 'left';
- public direction: TuiVerticalDirection | null = null;
+ public align: TuiDropdownAlign = this.options.align;
+ public direction: TuiVerticalDirection | null = this.options.direction;
+ public minHeight = this.options.minHeight;
+ public maxHeight = this.options.maxHeight;
+ public offset = this.options.offset;
+ public appearance = this.options.appearance;
public limitWidth: TuiDropdownWidth = 'fixed';
- public minHeight = 80;
- public maxHeight = 400;
- public offset = 4;
- public appearance = '';
+
+ public open = false;
}