Skip to content

Commit

Permalink
Merge pull request #781 from sanger/freshservice
Browse files Browse the repository at this point in the history
Freshservice
  • Loading branch information
khelwood authored Oct 18, 2024
2 parents 18a2f40 + 3eae532 commit 040e87e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 14 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "client",
"version": "2.48.0",
"version": "2.48.1",
"private": true,
"proxy": "http://localhost:8080",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion public/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ window.STAN_CONFIG = {
headerColor: "bg-gradient-to-tr from-sdb to-sdb-400",
footerColor: "border-sdb-100 bg-sdb-400",
deploymentDate: "TBD",
supportEmail: "beaglebugs@sanger.ac.uk",
supportUrl: "https://sanger.freshservice.com/support/catalog/items/281",
maxSearchRecords: 150,
};
11 changes: 1 addition & 10 deletions src/components/AppShell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -645,16 +645,7 @@ function AppShell({ children }: AppShellParams) {
</div>
</li>
<li>
<a className="flex flex-row items-center justify-start gap-1" href={`mailto:${config?.supportEmail}`}>
<svg
xmlns="http://www.w3.org/2000/svg"
className="h-4 h-4 inline-block"
viewBox="0 0 20 20"
fill="currentColor"
>
<path d="M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884z" />
<path d="M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z" />
</svg>
<a className="flex flex-row items-center justify-start gap-1" href={`${config?.supportUrl}`}>
Support
</a>
</li>
Expand Down
4 changes: 2 additions & 2 deletions src/types/stan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,9 @@ export type StanConfig = {
footerColor: string;

/**
* Email address for users to get support
* URL for users to get support
*/
supportEmail: string;
supportUrl: string;

/**
* When was this release deployed
Expand Down

0 comments on commit 040e87e

Please sign in to comment.