diff options
| author | AAGaming <aa@mail.catvibers.me> | 2022-10-01 21:22:30 -0400 |
|---|---|---|
| committer | AAGaming <aa@mail.catvibers.me> | 2022-10-01 21:22:30 -0400 |
| commit | 3c00eb8cf4f5b02b8ec87fc1d9ccdd70221dd916 (patch) | |
| tree | a0fc935492db619394415bbcccef3cc724ae901f /frontend/src/components/PluginView.tsx | |
| parent | 21e1d8504a184d9f9384b7ceab2d4b3cf94c1e36 (diff) | |
| download | decky-loader-3c00eb8cf4f5b02b8ec87fc1d9ccdd70221dd916.tar.gz decky-loader-3c00eb8cf4f5b02b8ec87fc1d9ccdd70221dd916.zip | |
fix friends menu focusing itself
Diffstat (limited to 'frontend/src/components/PluginView.tsx')
| -rw-r--r-- | frontend/src/components/PluginView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/PluginView.tsx b/frontend/src/components/PluginView.tsx index c56d731f..0d0a52cf 100644 --- a/frontend/src/components/PluginView.tsx +++ b/frontend/src/components/PluginView.tsx @@ -32,7 +32,7 @@ const PluginView: VFC = () => { .map(({ name, icon }) => ( <PanelSectionRow key={name}> <ButtonItem layout="below" onClick={() => setActivePlugin(name)}> - <div style={{ display: 'flex', alignItems: "center", justifyContent: 'space-between' }}> + <div style={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between' }}> {icon} <div>{name}</div> <NotificationBadge show={updates?.has(name)} style={{ top: '-5px', right: '-5px' }} /> |
