fix(webui/updater): friendlier Updates empty-state copy
'No installed apps to track.' was terse and gave no next step. Point the user to the App Center so the empty Updates tab is actionable. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
This commit is contained in:
parent
712068a00e
commit
f1d22b057a
@ -313,7 +313,7 @@ class UpdaterPage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
renderUpdates() {
|
renderUpdates() {
|
||||||
if (!this.apps.length) return this.empty('No installed apps to track.');
|
if (!this.apps.length) return this.empty('No apps installed yet — add one from the App Center and its updates will show up here.');
|
||||||
const rows = this.apps.map(a => {
|
const rows = this.apps.map(a => {
|
||||||
const cur = this.escape(a.current_version || a.current_image || '—');
|
const cur = this.escape(a.current_version || a.current_image || '—');
|
||||||
const avail = a.update_available ? this.escape(a.available_version || a.available_image || 'newer') : null;
|
const avail = a.update_available ? this.escape(a.available_version || a.available_image || 'newer') : null;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user