Skip to content

Commit

Permalink
Add useful links to about page (stashapp#322)
Browse files Browse the repository at this point in the history
* Add useful links to about page

* * open about link urls in new tab/window
  • Loading branch information
bnkai authored and Leopere committed Jan 21, 2020
1 parent 999096d commit a62af3a
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion ui/v2/src/components/Settings/SettingsAboutPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,27 @@ export const SettingsAboutPanel: FunctionComponent<IProps> = (props: IProps) =>
return (
<>
<H4>About</H4>
<HTMLTable>
<tbody>
<tr>
<td>Stash home at <a href="https://github.com/stashapp/stash" target="_blank">Github</a></td>
</tr>
<tr>
<td>Stash <a href="https://github.com/stashapp/stash/wiki" target="_blank">Wiki</a> page</td>
</tr>
<tr>
<td>Join our <a href="https://discord.gg/2TsNFKt" target="_blank">Discord</a> channel</td>
</tr>
<tr>
<td>Support us through <a href="https://opencollective.com/stashapp" target="_blank">Open Collective</a></td>
</tr>
</tbody>
</HTMLTable>
{!data || loading ? <Spinner size={Spinner.SIZE_LARGE} /> : undefined}
{!!error ? <span>{error.message}</span> : undefined}
{!!errorLatest ? <span>{errorLatest.message}</span> : undefined}
{renderVersion()}
{!dataLatest || loadingLatest || networkStatus === 4 ? <Spinner size={Spinner.SIZE_SMALL} /> : <>{renderLatestVersion()}</>}

</>
);
};

0 comments on commit a62af3a

Please sign in to comment.