Fix typo (forgot an else)
This commit is contained in:
parent
586b39e1ef
commit
52e6a10f2a
1 changed files with 1 additions and 1 deletions
|
|
@ -134,7 +134,7 @@ Item {
|
|||
|
||||
//console.log("dir: "+newPath);
|
||||
navigation.navigate(newPath);
|
||||
} if( "dir" === del.modelData["type"] ) {
|
||||
} else if( "dir" === del.modelData["type"] ) {
|
||||
let newPath = "";
|
||||
for( let a=1; a < listviewNav.model.length; a++ )
|
||||
newPath += "/" + listviewNav.model[a];
|
||||
|
|
|
|||
Loading…
Reference in a new issue