From 80027b91c044ffbd71b4809fa89cc624fd6a07e4 Mon Sep 17 00:00:00 2001 From: bnkai <48220860+bnkai@users.noreply.github.com> Date: Tue, 21 Jan 2020 05:11:18 +0200 Subject: [PATCH] Add useful links to about page (#322) * Add useful links to about page * * open about link urls in new tab/window --- .../components/Settings/SettingsAboutPanel.tsx | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/ui/v2/src/components/Settings/SettingsAboutPanel.tsx b/ui/v2/src/components/Settings/SettingsAboutPanel.tsx index 2020b8beb..fd8143872 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()}} - ); };