update text
This commit is contained in:
parent
6440621d5d
commit
f45a3933de
3 changed files with 3 additions and 3 deletions
|
|
@ -62,7 +62,7 @@ export function AudioDeviceSelector({ audioDeviceName, onChange }) {
|
|||
<SelectInput
|
||||
options={options}
|
||||
onClick={onClick}
|
||||
placeholder="select device"
|
||||
placeholder="System Standard"
|
||||
value={audioDeviceName}
|
||||
onChange={onDeviceChange}
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ export function SelectInput({ value, options, onChange, onClick, placeholder })
|
|||
onChange={(e) => onChange(e.target.value)}
|
||||
>
|
||||
<option disabled value="">
|
||||
{`-- ${placeholder ?? 'select an option'} --`}
|
||||
{`${placeholder ?? 'select an option'}`}
|
||||
</option>
|
||||
{Array.from(options.keys()).map((id) => (
|
||||
<option key={id} className="bg-background" value={id}>
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ export function SettingsTab() {
|
|||
</div>
|
||||
</FormItem> */}
|
||||
{AudioContext.prototype.setSinkId != null && (
|
||||
<FormItem label="Audio Device">
|
||||
<FormItem label="Audio Output Device">
|
||||
<AudioDeviceSelector
|
||||
audioDeviceName={audioDeviceName}
|
||||
onChange={(audioDeviceName) => settingsMap.setKey('audioDeviceName', audioDeviceName)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue