diff options
| author | AAGaming <aagaming@riseup.net> | 2024-09-01 20:40:12 -0400 |
|---|---|---|
| committer | AAGaming <aagaming@riseup.net> | 2024-09-01 20:40:12 -0400 |
| commit | d06494885a8932dd01571b40de88eed3a6cd095b (patch) | |
| tree | f33500efc54f23bc35ef4fe9d8ce494c39907d6d /frontend/src/components/store/PluginCard.tsx | |
| parent | a6e4bcf0527a998261698c555113a3f652d280d9 (diff) | |
| download | decky-loader-d06494885a8932dd01571b40de88eed3a6cd095b.tar.gz decky-loader-d06494885a8932dd01571b40de88eed3a6cd095b.zip | |
fix external links softlocking the ui in testing store cta
Diffstat (limited to 'frontend/src/components/store/PluginCard.tsx')
| -rw-r--r-- | frontend/src/components/store/PluginCard.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/frontend/src/components/store/PluginCard.tsx b/frontend/src/components/store/PluginCard.tsx index dd54aa65..6e2a3510 100644 --- a/frontend/src/components/store/PluginCard.tsx +++ b/frontend/src/components/store/PluginCard.tsx @@ -4,6 +4,7 @@ import { useTranslation } from 'react-i18next'; import { InstallType } from '../../plugin'; import { StorePlugin, StorePluginVersion, requestPluginInstall } from '../../store'; +import ExternalLink from '../ExternalLink'; interface PluginCardProps { plugin: StorePlugin; @@ -108,7 +109,7 @@ const PluginCard: FC<PluginCardProps> = ({ plugin }) => { }} > <i>{t('PluginCard.plugin_full_access')}</i>{' '} - <a + <ExternalLink className="deckyStoreCardDescriptionRootLink" href="https://deckbrew.xyz/root" target="_blank" @@ -118,7 +119,7 @@ const PluginCard: FC<PluginCardProps> = ({ plugin }) => { }} > deckbrew.xyz/root - </a> + </ExternalLink> </div> )} </div> |
