Add message about doing a manual pass
This commit is contained in:
parent
024a11c1de
commit
e814731ec2
2 changed files with 8 additions and 2 deletions
|
|
@ -130,7 +130,7 @@
|
|||
{/if}
|
||||
|
||||
{#if progress.message}
|
||||
<p class="message">{progress.message}</p>
|
||||
<p class="message">{@html progress.message}</p>
|
||||
{/if}
|
||||
|
||||
{#if (jobStatus === 'running' || jobStatus === 'completed' || jobStatus === 'cancelled') && (displayCompleted > 0 || Object.keys(displaySkipStats).length > 0)}
|
||||
|
|
|
|||
|
|
@ -138,7 +138,13 @@ pub async fn run_job(state: AppState, params: JobParams, cancel_token: Cancellat
|
|||
status: JobStatus::Completed,
|
||||
completed: final_progress.completed,
|
||||
total: final_progress.total,
|
||||
message: Some(format!("Video saved to: {}", output_path.display())),
|
||||
message: Some(format!(
|
||||
"Video saved to: {}\
|
||||
<br><i>Please note that for the best \
|
||||
looking results, you should do a manual pass in the gallery view \
|
||||
(button available in the section below)</i>",
|
||||
output_path.display()
|
||||
)),
|
||||
skip_stats: final_progress.skip_stats,
|
||||
person_id: final_progress.person_id,
|
||||
person_name: final_progress.person_name,
|
||||
|
|
|
|||
Loading…
Reference in a new issue