diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2025-07-21 13:24:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-21 13:24:11 -0400 |
| commit | 2106ef8eb31ee46611fce07dd715d3ac1c4ca0ab (patch) | |
| tree | 98f3ef8c841b341ea63d3055a460b4ff8e171815 /src/components/Content.tsx | |
| parent | a7fb5ee69c8d74534f2994263558ddcd9c8c0d41 (diff) | |
| parent | 0dd6b54e6992f6d71a920a7b8bd8ca84672db145 (diff) | |
| download | decky-lsfg-vk-2106ef8eb31ee46611fce07dd715d3ac1c4ca0ab.tar.gz decky-lsfg-vk-2106ef8eb31ee46611fce07dd715d3ac1c4ca0ab.zip | |
Merge pull request #62 from xXJSONDeruloXx/clipboard-tests
Clipboard automation
Diffstat (limited to 'src/components/Content.tsx')
| -rw-r--r-- | src/components/Content.tsx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 9ce4c35..a075574 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -8,6 +8,7 @@ import { ConfigurationSection } from "./ConfigurationSection"; import { UsageInstructions } from "./UsageInstructions"; import { WikiButton } from "./WikiButton"; import { ClipboardButton } from "./ClipboardButton"; +import { SmartClipboardButton } from "./SmartClipboardButton"; import { PluginUpdateChecker } from "./PluginUpdateChecker"; import { NerdStuffModal } from "./NerdStuffModal"; import { ConfigurationData } from "../config/configSchema"; @@ -70,6 +71,8 @@ export function Content() { isInstalled={isInstalled} installationStatus={installationStatus} /> + + <SmartClipboardButton /> {/* Configuration Section - only show if installed */} {isInstalled && ( @@ -85,9 +88,7 @@ export function Content() { <ClipboardButton /> {/* Plugin Update Checker */} - <PluginUpdateChecker /> - - {/* Nerd Stuff Button */} + <PluginUpdateChecker /> {/* Nerd Stuff Button */} <PanelSectionRow> <ButtonItem layout="below" |
