This commit is contained in:
adabarbulescu 2026-08-04 02:40:47 +02:00 committed by GitHub
commit 73aa20cbbf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1005,7 +1005,7 @@
var tips = mobile ? phone : desktop; var tips = mobile ? phone : desktop;
var el = document.getElementById('welcome-tip'); var el = document.getElementById('welcome-tip');
if (el) { if (el) {
el.textContent = 'Pick a model if you want, or just type.'; el.textContent = tips[Math.floor(Math.random() * tips.length)];
} }
fetch('/api/version').then(function(r){return r.json()}).then(function(d){ fetch('/api/version').then(function(r){return r.json()}).then(function(d){
if (d.version) window._appVersion = d.version; if (d.version) window._appVersion = d.version;