We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e39a117 commit ad1738fCopy full SHA for ad1738f
1 file changed
app/components/ServicesDashboard.jsx
@@ -24,6 +24,8 @@ const ServicesDashboard = (props) => {
24
type="button"
25
key={`${i}${context[i]}`}
26
onClick={() => {
27
+ // Database button click functionality
28
+ console.log('SERVICE BUTTON CLICKED!!');
29
setSelection(<ServiceOverview index={i} />);
30
}}
31
>
@@ -56,6 +58,17 @@ const ServicesDashboard = (props) => {
56
58
Add Database
57
59
</button>
60
</div>
61
+ <div className="left-bottom">
62
+ <button
63
+ className="overviewSubmitBtn"
64
+ type="submit"
65
+ onClick={() => {
66
+ location.reload();
67
+ }}
68
+ >
69
+ Refresh overview
70
+ </button>
71
+ </div>
72
73
<div className="databsaseList">{serviceSelected}</div>
74
0 commit comments