Browse Source

Update ClientTable.tsx (#3342)

* 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
Vishal Sharma 2 years ago committed by Gabe Kangas
parent
commit
f788e07989
  1. 2
      web/components/admin/ClientTable.tsx

2
web/components/admin/ClientTable.tsx

@ -41,7 +41,7 @@ export const ClientTable: FC<ClientTableProps> = ({ data }) => { @@ -41,7 +41,7 @@ export const ClientTable: FC<ClientTableProps> = ({ data }) => {
<div style={{ padding: 8 }}>
<Input
placeholder="Search display names..."
value={selectedKeys[0]}
value={selectedKeys[0].toString()} // Convert selectedKeys[0] to string
onChange={e => {
setSelectedKeys(e.target.value ? [e.target.value] : []);
confirm({ closeDropdown: false });

Loading…
Cancel
Save