We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ea5e3 commit 13c8bf4Copy full SHA for 13c8bf4
1 file changed
src/lib/components/app-sidebar.svelte
@@ -310,7 +310,15 @@
310
<Command.Dialog
311
bind:open={commandOpen.current}
312
onOpenChangeComplete={(state) => {
313
- if (!state) commandInput = '';
+ if (!state) {
314
+ commandInput = '';
315
+ // 100% not an easter egg
316
+ if (Math.random() > 0.05) {
317
+ commandPlaceholder = 'Search...';
318
+ } else {
319
+ commandPlaceholder = "The search begins, I'm back, so enjoy the trip, huh";
320
+ }
321
322
}}
323
>
324
<Command.Input bind:value={commandInput} placeholder={commandPlaceholder} />
0 commit comments