mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
applied Ryan's patch for Bug 276007 - Folder list does not get updated when creating the first folder.
This commit is contained in:
parent
7f0dc638ae
commit
53ae56097d
1 changed files with 6 additions and 2 deletions
|
|
@ -49,6 +49,10 @@ FileList={
|
|||
}
|
||||
}
|
||||
}
|
||||
$(fileElements[pos]).after(element);
|
||||
if(fileElements.length){
|
||||
$(fileElements[pos]).after(element);
|
||||
}else{
|
||||
$('#fileList').append(element);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue