File tree 1 file changed +16
-2
lines changed
packages/project-editor/lvgl
1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ import type { Flow } from "project-editor/flow/flow";
7
7
import { Page } from "project-editor/features/page/page" ;
8
8
9
9
import type { LVGLWidget } from "project-editor/lvgl/widgets" ;
10
- import { USER_WIDGET_IDENTIFIER_SEPARATOR } from "project-editor/build/helper" ;
10
+ import {
11
+ getName ,
12
+ NamingConvention ,
13
+ USER_WIDGET_IDENTIFIER_SEPARATOR
14
+ } from "project-editor/build/helper" ;
11
15
12
16
export const GENERATED_NAME_PREFIX = "obj" ;
13
17
@@ -96,7 +100,17 @@ export class LVGLIdentifiers {
96
100
if ( widget instanceof ProjectEditor . LVGLScreenWidgetClass ) {
97
101
identifierName = page . name ;
98
102
} else {
99
- identifierName = prefix + widget . identifier ;
103
+ if ( ! widget . identifier ) {
104
+ return ;
105
+ }
106
+
107
+ identifierName =
108
+ prefix +
109
+ getName (
110
+ "" ,
111
+ widget . identifier ,
112
+ NamingConvention . UnderscoreLowerCase
113
+ ) ;
100
114
}
101
115
102
116
if ( ! identifierName ) {
You can’t perform that action at this time.
0 commit comments