Skip to content

Commit ad1738f

Browse files
committed
added MS overview refresh button
1 parent e39a117 commit ad1738f

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

app/components/ServicesDashboard.jsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ const ServicesDashboard = (props) => {
2424
type="button"
2525
key={`${i}${context[i]}`}
2626
onClick={() => {
27+
// Database button click functionality
28+
console.log('SERVICE BUTTON CLICKED!!');
2729
setSelection(<ServiceOverview index={i} />);
2830
}}
2931
>
@@ -56,6 +58,17 @@ const ServicesDashboard = (props) => {
5658
Add Database
5759
</button>
5860
</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>
5972
</div>
6073
<div className="databsaseList">{serviceSelected}</div>
6174
</div>

0 commit comments

Comments
 (0)