mirror of
https://github.com/moghtech/komodo.git
synced 2026-07-20 08:04:11 -05:00
fix deployment action build A tag styling
This commit is contained in:
@@ -126,13 +126,17 @@ const Actions: Component<{}> = (p) => {
|
||||
};
|
||||
|
||||
const Build: Component = () => {
|
||||
const { ws, deployments } = useAppState();
|
||||
const { deployments } = useAppState();
|
||||
const params = useParams();
|
||||
const actions = useActionStates();
|
||||
const buildID = () => deployments.get(params.id)!.deployment.build_id!;
|
||||
return (
|
||||
<Flex class={combineClasses("action shadow")}>
|
||||
<A href={`/build/${buildID()}`} class="pointer">
|
||||
<A
|
||||
href={`/build/${buildID()}`}
|
||||
class="pointer"
|
||||
style={{ padding: 0, "font-size": "16px" }}
|
||||
>
|
||||
build
|
||||
</A>
|
||||
<Show
|
||||
|
||||
Reference in New Issue
Block a user