File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -127,9 +127,11 @@ export const toggleNative = (state: ApplicationStateInt) => {
127
127
const app = components . find ( ( e : ComponentInt ) => e . id === 1 ) ;
128
128
app . position . width = ! state . native ? 500 : 1200 ;
129
129
app . position . height = ! state . native ? 850 : 800 ;
130
+ app . changed = true ;
130
131
131
132
return {
132
133
...initialApplicationState ,
134
+ focusComponent : app ,
133
135
native : ! state . native ,
134
136
components
135
137
} ;
Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ const componentRender = (
185
185
186
186
187
187
interface Props {
188
- ${ props . map ( prop => `${ prop . key } : ${ typeSwitcher ( prop . type ) } \n` ) }
188
+ ${ props . map ( prop => `${ prop . key } : ${ typeSwitcher ( prop . type ) } ; \n` ) }
189
189
};
190
190
191
191
${
You can’t perform that action at this time.
0 commit comments