Browse Source
* Update ClientTable.tsx solves: #3339 ## Changes changed owncast/web/components/admin/ClientTable.tsx line 44 `value={selectedKeys[0]})` to `value={selectedKeys[0].toString()} // Convert selectedKeys[0] to string ` as the value attribute expects a value of type string | number | readonly string[]` but previously it was assigned bigint. * Update ClientTable.tsx solves: #3339 ## Changes changed owncast/web/components/admin/ClientTable.tsx line 44 `value={selectedKeys[0]})` to `value={selectedKeys[0].toString()} // Convert selectedKeys[0] to string ` as the value attribute expects a value of type `string | number | readonly string[]` but previously it was assigned bigint.pull/3395/head
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue