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:
Joseph Milazzo 2021-01-02 12:44:11 -06:00
parent fe5ec2f032
commit 1816b6c68d
20 changed files with 235 additions and 31 deletions

View file

@ -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() {