fix media autoload button function as per it's label (#2195)
* Corrected button title Media would load automatically if the option is checked not the other way around. * Update src/app/features/settings/general/General.tsx * Update General.tsx * Update General.tsx --------- Co-authored-by: Krishan <33421343+kfiven@users.noreply.github.com>
This commit is contained in:
parent
b84f975f83
commit
999bb7aca1
1 changed files with 1 additions and 1 deletions
|
@ -555,7 +555,7 @@ function Messages() {
|
|||
<SequenceCard className={SequenceCardStyle} variant="SurfaceVariant" direction="Column">
|
||||
<SettingTile
|
||||
title="Disable Media Auto Load"
|
||||
after={<Switch variant="Primary" value={mediaAutoLoad} onChange={setMediaAutoLoad} />}
|
||||
after={<Switch variant="Primary" value={!mediaAutoLoad} onChange={(v) => setMediaAutoLoad(!v)} />}
|
||||
/>
|
||||
</SequenceCard>
|
||||
<SequenceCard className={SequenceCardStyle} variant="SurfaceVariant" direction="Column">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue