diff --git a/ui/v2/src/components/Settings/SettingsAboutPanel.tsx b/ui/v2/src/components/Settings/SettingsAboutPanel.tsx index 2020b8bebde..fd814387282 100644 --- a/ui/v2/src/components/Settings/SettingsAboutPanel.tsx +++ b/ui/v2/src/components/Settings/SettingsAboutPanel.tsx @@ -84,12 +84,27 @@ export const SettingsAboutPanel: FunctionComponent = (props: IProps) => return ( <>

About

+ + + + Stash home at Github + + + Stash Wiki page + + + Join our Discord channel + + + Support us through Open Collective + + + {!data || loading ? : undefined} {!!error ? {error.message} : undefined} {!!errorLatest ? {errorLatest.message} : undefined} {renderVersion()} {!dataLatest || loadingLatest || networkStatus === 4 ? : <>{renderLatestVersion()}} - ); };