We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff28993 commit 498e0cfCopy full SHA for 498e0cf
app/Filament/Pages/Settings/GeneralPage.php
@@ -88,6 +88,15 @@ protected function getFormSchema(): array
88
];
89
});
90
91
+ if (! $options->count() && is_numeric($search)) {
92
+ $options = collect([
93
+ [
94
+ 'id' => $search,
95
+ 'name' => $search.': No server found, manually add this ID.',
96
+ ],
97
+ ]);
98
+ }
99
+
100
return $options->pluck('name', 'id');
101
})
102
->columnSpan(2),
0 commit comments