File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -74,6 +74,8 @@ public static function form(Form $form): Form
7474 ->label ('Upload Jitter (ms) ' ),
7575 Forms \Components \TextInput::make ('data.ping.jitter ' )
7676 ->label ('Ping Jitter (ms) ' ),
77+ Forms \Components \TextInput::make ('data.packetLoss ' )
78+ ->label ('Packet Loss ' ),
7779 Forms \Components \Textarea::make ('data.message ' )
7880 ->label ('Error Message ' )
7981 ->hint (new HtmlString ('🔗<a href="https://docs.speedtest-tracker.dev/help/error-messages" target="_blank" rel="nofollow">Error Messages</a> ' ))
@@ -163,6 +165,9 @@ public static function table(Table $table): Table
163165 ->sortable (query: function (Builder $ query , string $ direction ): Builder {
164166 return $ query ->orderBy ('data->ping->jitter ' , $ direction );
165167 }),
168+ Tables \Columns \TextColumn::make ('packet_loss ' )
169+ ->toggleable ()
170+ ->toggledHiddenByDefault (),
166171 Tables \Columns \TextColumn::make ('status ' )
167172 ->toggleable ()
168173 ->sortable (),
You can’t perform that action at this time.
0 commit comments