Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
snadrus committed Apr 30, 2024
1 parent 4ea4ff4 commit 461bb5b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions curiosrc/web/hapi/web/node_info.gohtml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{define "node_info"}}
<h2>Info</h2>
<table>
<table class="table table-dark">
<tr>
<td>Host</td>
<td>ID</td>
Expand All @@ -22,7 +22,7 @@
</table>
<hr>
<h2>Storage</h2>
<table>
<table class="table table-dark">
<tr>
<td>ID</td>
<td>Type</td>
Expand Down Expand Up @@ -56,7 +56,7 @@
<hr>
<h2>Tasks</h2>
<h3>Running</h3>
<table>
<table class="table table-dark">
<tr>
<td>ID</td>
<td>Task</td>
Expand All @@ -73,7 +73,7 @@
{{end}}
</table>
<h3>Recently Finished</h3>
<table>
<table class="table table-dark">
<tr>
<td>ID</td>
<td>Task</td>
Expand Down
5 changes: 3 additions & 2 deletions curiosrc/web/hapi/web/root.gohtml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{{define "root"}}
<!DOCTYPE html>
<html>
<head>
<title>{{.PageTitle}}</title>
<script src="https://unpkg.com/[email protected]" integrity="sha384-xcuj3WpfgjlKF+FXhSQFQ0ZNr39ln+hwjN3npfM9VBnUskLolQAcN80McRIVOPuO" crossorigin="anonymous"></script>
<script type="module" src="chain-connectivity.mjs"></script>
<link rel="stylesheet" href="/main.css">
<script type="module" src="/chain-connectivity.mjs"></script>
<link rel="stylesheet" href="/ux/main.css">
<link rel='stylesheet' href='https://cdn.jsdelivr.net/npm/[email protected]/build/web/hack-subset.css'>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<script type="module" src="/ux/curio-ux.mjs"></script>
Expand Down
2 changes: 1 addition & 1 deletion lib/harmony/resources/getGPU_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
package resources

func getGPUDevices() float64 {
return 10000.0 // unserious value intended for non-production use.
return 1.0 // likely-true value intended for non-production use.
}

0 comments on commit 461bb5b

Please sign in to comment.