click on build in deployment actions navigates to build

This commit is contained in:
beckerinj
2022-08-09 01:51:10 -04:00
parent 7b1c01f402
commit eb4add5199
2 changed files with 7 additions and 1 deletions
@@ -108,7 +108,9 @@ const Build: Component = () => {
const buildID = () => deployments.get(selected.id())!.buildID!;
return (
<Flex class={combineClasses("action shadow", themeClass())}>
build{" "}
<div class="pointer" onClick={() => selected.set(buildID(), "build")}>
build
</div>
<Show
when={!actions.building}
fallback={
+4
View File
@@ -346,3 +346,7 @@ svg.dark {
opacity: 0.4;
height: 2px;
}
.pointer {
cursor: pointer;
}