Added series card implementation. Added a mock cover to help visualize style changes. Implemented ability to create a new library without validation errors. Fixed a bug in directory picker that caused selected folders to not export the full path.
This commit is contained in:
parent
fe5ec2f032
commit
1816b6c68d
20 changed files with 235 additions and 31 deletions
|
|
@ -84,7 +84,9 @@ export class DirectoryPickerComponent implements OnInit {
|
|||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
|
||||
this.modal.close({success: true, folderPath: folderName});
|
||||
const fullPath = (this.routeStack.items.join('\\') + '\\' + folderName).replace('\\\\', '\\');
|
||||
|
||||
this.modal.close({success: true, folderPath: fullPath});
|
||||
}
|
||||
|
||||
close() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue