File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ 0.5.2]
8
+ - Fix frame not found by Id [ #82 ] ( https://github.com/halfnelson/svelte-native/issues/82 )
9
+
7
10
## [ 0.5.1]
8
11
- Fix animations when using latest svelte
9
12
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " svelte-native" ,
3
- "version" : " 0.5.1 " ,
3
+ "version" : " 0.5.2 " ,
4
4
"description" : " Svelte integration for NativeScript" ,
5
5
"private" : true ,
6
6
"repository" : {
Original file line number Diff line number Diff line change @@ -14,7 +14,9 @@ export default class FrameElement extends NativeElementNode {
14
14
let dummy = createElement ( 'fragment' ) ;
15
15
let page = new ( value as any ) ( { target : dummy , props : { } } ) ;
16
16
( this . nativeView as Frame ) . navigate ( { create : ( ) => ( dummy . firstElement ( ) as NativeElementNode ) . nativeView } ) ;
17
+ return ;
17
18
}
19
+ super . setAttribute ( key , value ) ;
18
20
}
19
21
20
22
get nativeView ( ) : Frame {
You can’t perform that action at this time.
0 commit comments