mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
Fixed a bad merge and patched out a message about base url for stable release.
This commit is contained in:
parent
aa710529f0
commit
cb9fa0dda8
@ -25,7 +25,7 @@ namespace API.Data
|
|||||||
public IUserRepository UserRepository => new UserRepository(_context, _userManager, _mapper);
|
public IUserRepository UserRepository => new UserRepository(_context, _userManager, _mapper);
|
||||||
public ILibraryRepository LibraryRepository => new LibraryRepository(_context, _mapper);
|
public ILibraryRepository LibraryRepository => new LibraryRepository(_context, _mapper);
|
||||||
|
|
||||||
public IVolumeRepository VolumeRepository => new VolumeRepository(_context);
|
public IVolumeRepository VolumeRepository => new VolumeRepository(_context, _mapper);
|
||||||
|
|
||||||
public ISettingsRepository SettingsRepository => new SettingsRepository(_context, _mapper);
|
public ISettingsRepository SettingsRepository => new SettingsRepository(_context, _mapper);
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<form [formGroup]="settingsForm" *ngIf="serverSettings !== undefined">
|
<form [formGroup]="settingsForm" *ngIf="serverSettings !== undefined">
|
||||||
<p class="text-warning pt-2">Port, Base Url, and Logging Level require a manual restart of Kavita to take effect.</p>
|
<p class="text-warning pt-2">Port and Logging Level require a manual restart of Kavita to take effect.</p>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label for="settings-cachedir">Cache Directory</label> <i class="fa fa-info-circle" placement="right" [ngbTooltip]="cacheDirectoryTooltip" role="button" tabindex="0"></i>
|
<label for="settings-cachedir">Cache Directory</label> <i class="fa fa-info-circle" placement="right" [ngbTooltip]="cacheDirectoryTooltip" role="button" tabindex="0"></i>
|
||||||
<ng-template #cacheDirectoryTooltip>Where the server place temporary files when reading. This will be cleaned up on a regular basis.</ng-template>
|
<ng-template #cacheDirectoryTooltip>Where the server place temporary files when reading. This will be cleaned up on a regular basis.</ng-template>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user