chore: increase recent rApps in dropdown from 3 to 5
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
d79d560771
commit
8af5f3d0b6
|
|
@ -140,7 +140,7 @@ export class RStackAppSwitcher extends HTMLElement {
|
||||||
try {
|
try {
|
||||||
const recent = RStackAppSwitcher.#getRecentModules().filter((x) => x !== id);
|
const recent = RStackAppSwitcher.#getRecentModules().filter((x) => x !== id);
|
||||||
recent.unshift(id);
|
recent.unshift(id);
|
||||||
localStorage.setItem("rspace-recent-modules", JSON.stringify(recent.slice(0, 3)));
|
localStorage.setItem("rspace-recent-modules", JSON.stringify(recent.slice(0, 5)));
|
||||||
} catch {}
|
} catch {}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue