+
Logs
diff --git a/src/HydraFrontend/root/hydra.css b/src/HydraFrontend/root/hydra.css
index 2bd1a535..09db72b7 100644
--- a/src/HydraFrontend/root/hydra.css
+++ b/src/HydraFrontend/root/hydra.css
@@ -26,6 +26,7 @@ table {
empty-cells: show;
border-collapse: collapse;
border-spacing: 0px;
+ margin-bottom: 1em;
}
th {
@@ -179,24 +180,21 @@ tr.runningJob {
margin-left: 3em;
}
-div.template {
+.template {
display: none;
}
div.jobset {
border: solid black 1px;
+ -moz-border-radius: 1em;
+ border-radius: 1em;
padding-left: 1em;
padding-right: 1em;
- padding-bottom: 1em;
margin-bottom: 1em;
}
div.jobset-edit {
- border: solid black 1px;
background-color: #f8f8f8;
- padding-left: 1em;
- padding-right: 1em;
- margin-bottom: 1em;
}
div.jobset-edit h3, div.jobset h3 {
diff --git a/src/HydraFrontend/root/layout.tt b/src/HydraFrontend/root/layout.tt
index ace946b0..4ca8a97e 100644
--- a/src/HydraFrontend/root/layout.tt
+++ b/src/HydraFrontend/root/layout.tt
@@ -14,7 +14,7 @@
[% title %]
-
+
[% END %]
diff --git a/src/scheduler.pl b/src/scheduler.pl
index b76bf55d..7caf430a 100644
--- a/src/scheduler.pl
+++ b/src/scheduler.pl
@@ -35,7 +35,7 @@ sub fetchInput {
my $type = $input->type;
if ($type eq "path") {
- my $uri = $alt->uri;
+ my $uri = $alt->value;
my $storePath = `nix-store --add "$uri"`
or die "cannot copy path $uri to the Nix store";
chomp $storePath;