Skip to content

Commit

Permalink
fix fhh url
Browse files Browse the repository at this point in the history
  • Loading branch information
johnb8005 committed Jan 15, 2022
1 parent 1a9652c commit c8dcc49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const ghUrl = "https://github.com/nexys-admin/payroll-switzerland";
export const ghUrl = "https://github.com/nexys-admin/payroll-switzerland";

export const sha = import.meta.env.SNOWPACK_PUBLIC_GIT_SHA || "unset_sha";
export const ghUrlSha = `${ghUrl}/commit/${sha}`;
Expand Down
2 changes: 1 addition & 1 deletion src/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as C from './config';

const Footer = () => <footer class="footer">
<div class="container">
<span class="text-muted"> <a href={C.ghUrlVersion}>{C.version}</a> - <a href={ghUrl}>
<span class="text-muted"> <a href={C.ghUrlVersion}>{C.version}</a> - <a href={C.ghUrl}>
<i className="fa fa-code"></i> Source
</a>
&nbsp;available under MIT license. Contributions are welcome.</span>
Expand Down

0 comments on commit c8dcc49

Please sign in to comment.