mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-14 15:18:33 +00:00
update text
This commit is contained in:
parent
6440621d5d
commit
f45a3933de
@ -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…
x
Reference in New Issue
Block a user