Make column breakpoints optional

This commit is contained in:
Paul Bottein 2024-08-20 12:26:34 +02:00
parent 79a56fabdf
commit c0aed4325d
No known key found for this signature in database

View File

@ -25,7 +25,7 @@ export interface LovelaceBaseViewConfig {
// Only used for section view, it should move to a section view config type when the views will have dedicated editor.
max_columns?: number;
dense_section_placement?: boolean;
column_breakpoints: Record<string, number>;
column_breakpoints?: Record<string, number>;
}
export interface LovelaceViewConfig extends LovelaceBaseViewConfig {