Bugfix/ux pass 2 (#1107)
* Adding margin bottom to series detail tabs * Styling tag badges with green on dark - Added 3 new css vars * Removing underline from readmore * Fixing see more to be on one line * adding gutter to see more * Changing queue toasts to info * adding api key tooltip * Updating active accordion on user preference. * Fixing search bar and close btn position * Fixed a bug where entering book reader in dark mode then closing out, would leave you in a broken white state. * Fixed broken wiki links Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
This commit is contained in:
parent
cd0af70a37
commit
d0c255de68
16 changed files with 41 additions and 22 deletions
|
|
@ -21,7 +21,7 @@ export class DirectoryPickerComponent implements OnInit {
|
|||
/**
|
||||
* Url to give more information about selecting directories. Passing nothing will suppress.
|
||||
*/
|
||||
@Input() helpUrl: string = 'https://wiki.kavitareader.com/en/guides/adding-a-library';
|
||||
@Input() helpUrl: string = 'https://wiki.kavitareader.com/en/guides/first-time-setup#adding-a-library-to-kavita';
|
||||
|
||||
currentRoot = '';
|
||||
folders: string[] = [];
|
||||
|
|
|
|||
|
|
@ -66,7 +66,8 @@ export class LibraryEditorModalComponent implements OnInit {
|
|||
model.folders = model.folders.map((item: string) => item.startsWith('\\') ? item.substr(1, item.length) : item);
|
||||
model.type = parseInt(model.type, 10);
|
||||
this.libraryService.create(model).subscribe(() => {
|
||||
this.toastr.success('Library created, a scan has been started');
|
||||
this.toastr.success('Library created successfully.');
|
||||
this.toastr.info('A scan has been started.');
|
||||
this.close(true);
|
||||
}, err => {
|
||||
this.errorMessage = err;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue