aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGalen Guyer <galen@galenguyer.com>2020-11-15 15:25:48 -0500
committerGalen Guyer <galen@galenguyer.com>2020-11-15 15:25:48 -0500
commita4fa00b052cb7d618125983efc626d2af62f9919 (patch)
tree978d7f257b49859aaf488fe11e81263644b0a966
parent668f0ee2dcc2bea3647e43db019ec3d9ee61e00e (diff)
make report issues link blue
-rw-r--r--src/App.js7
-rw-r--r--src/GoatCounter.js38
-rw-r--r--src/History.js2
3 files changed, 26 insertions, 21 deletions
diff --git a/src/App.js b/src/App.js
index e01dbdf..d8653a5 100644
--- a/src/App.js
+++ b/src/App.js
@@ -159,7 +159,12 @@ function App() {
By Galen Guyer. Source available on{" "}
<a className="text-blue-700" href="https://github.com/galenguyer/rit-covid-dashboard">
GitHub
- </a> (<a href="https://github.com/galenguyer/rit-covid-dashboard/issues">Report Issue</a>)
+ </a>{" "}
+ (
+ <a className="text-blue-700" href="https://github.com/galenguyer/rit-covid-dashboard/issues">
+ Report Issue
+ </a>
+ )
</p>
</div>
</BrowserRouter>
diff --git a/src/GoatCounter.js b/src/GoatCounter.js
index 15ec5ef..07a768a 100644
--- a/src/GoatCounter.js
+++ b/src/GoatCounter.js
@@ -1,26 +1,26 @@
-import React from 'react'
+import React from "react";
class GoatCounter extends React.Component {
- componentDidMount () {
- window.counter = 'https://rcd.goatcounter.com/count';
- const script = window.document.createElement('script');
- script.async = 1;
- script.src = 'https://gc.zgo.at/count.js';
- script.id = 'goatcounter';
- script.setAttribute('data-goatcounter', "https://rcd.goatcounter.com/count");
- (window.document.head || window.document.body).appendChild(script);
- }
+ componentDidMount() {
+ window.counter = "https://rcd.goatcounter.com/count";
+ const script = window.document.createElement("script");
+ script.async = 1;
+ script.src = "https://gc.zgo.at/count.js";
+ script.id = "goatcounter";
+ script.setAttribute("data-goatcounter", "https://rcd.goatcounter.com/count");
+ (window.document.head || window.document.body).appendChild(script);
+ }
- componentWillUnmount () {
- const script = window.document.getElementById('goatcounter')
- if (script) {
- script.parentNode.removeChild(script)
+ componentWillUnmount() {
+ const script = window.document.getElementById("goatcounter");
+ if (script) {
+ script.parentNode.removeChild(script);
+ }
}
- }
- render () {
- return null
- }
+ render() {
+ return null;
+ }
}
-export default GoatCounter \ No newline at end of file
+export default GoatCounter;
diff --git a/src/History.js b/src/History.js
index 2e710de..30e2fc4 100644
--- a/src/History.js
+++ b/src/History.js
@@ -12,7 +12,7 @@ import {
ResponsiveContainer,
Label,
} from "recharts";
-import GoatCounter from './GoatCounter';
+import GoatCounter from "./GoatCounter";
const History = (props) => {
const offset = DateTime.fromSQL(props.data[0].date, { zone: "UTC" }).setZone(DateTime.local().zoneName).toSeconds();