forked from github-starred/komodo
add gap to commit hover
This commit is contained in:
@@ -140,7 +140,7 @@ export const BuildComponents: RequiredResourceComponents = {
|
|||||||
</Card>
|
</Card>
|
||||||
</HoverCardTrigger>
|
</HoverCardTrigger>
|
||||||
<HoverCardContent align="start">
|
<HoverCardContent align="start">
|
||||||
<div className="grid">
|
<div className="grid gap-2">
|
||||||
<Badge
|
<Badge
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
className="w-fit text-muted-foreground"
|
className="w-fit text-muted-foreground"
|
||||||
@@ -168,7 +168,7 @@ export const BuildComponents: RequiredResourceComponents = {
|
|||||||
</Card>
|
</Card>
|
||||||
</HoverCardTrigger>
|
</HoverCardTrigger>
|
||||||
<HoverCardContent align="start">
|
<HoverCardContent align="start">
|
||||||
<div className="grid">
|
<div className="grid gap-2">
|
||||||
<Badge
|
<Badge
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
className="w-fit text-muted-foreground"
|
className="w-fit text-muted-foreground"
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ export const RepoComponents: RequiredResourceComponents = {
|
|||||||
</Card>
|
</Card>
|
||||||
</HoverCardTrigger>
|
</HoverCardTrigger>
|
||||||
<HoverCardContent align="start">
|
<HoverCardContent align="start">
|
||||||
<div className="grid">
|
<div className="grid gap-2">
|
||||||
<Badge
|
<Badge
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
className="w-fit text-muted-foreground"
|
className="w-fit text-muted-foreground"
|
||||||
@@ -155,7 +155,7 @@ export const RepoComponents: RequiredResourceComponents = {
|
|||||||
</Card>
|
</Card>
|
||||||
</HoverCardTrigger>
|
</HoverCardTrigger>
|
||||||
<HoverCardContent align="start">
|
<HoverCardContent align="start">
|
||||||
<div className="grid">
|
<div className="grid gap-2">
|
||||||
<Badge
|
<Badge
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
className="w-fit text-muted-foreground"
|
className="w-fit text-muted-foreground"
|
||||||
|
|||||||
@@ -226,7 +226,7 @@ export const StackComponents: RequiredResourceComponents = {
|
|||||||
</Card>
|
</Card>
|
||||||
</HoverCardTrigger>
|
</HoverCardTrigger>
|
||||||
<HoverCardContent align="start">
|
<HoverCardContent align="start">
|
||||||
<div className="grid">
|
<div className="grid gap-2">
|
||||||
<Badge
|
<Badge
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
className="w-fit text-muted-foreground"
|
className="w-fit text-muted-foreground"
|
||||||
@@ -260,7 +260,7 @@ export const StackComponents: RequiredResourceComponents = {
|
|||||||
</Card>
|
</Card>
|
||||||
</HoverCardTrigger>
|
</HoverCardTrigger>
|
||||||
<HoverCardContent align="start">
|
<HoverCardContent align="start">
|
||||||
<div className="grid">
|
<div className="grid gap-2">
|
||||||
<Badge
|
<Badge
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
className="w-fit text-muted-foreground"
|
className="w-fit text-muted-foreground"
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ export const StackInfo = ({
|
|||||||
<Section titleOther={titleOther}>
|
<Section titleOther={titleOther}>
|
||||||
{!is_down && stack?.info?.deployed_contents && (
|
{!is_down && stack?.info?.deployed_contents && (
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader>
|
<CardHeader className="flex flex-col gap-2">
|
||||||
deployed contents:{" "}
|
deployed contents:{" "}
|
||||||
{stack?.info?.deployed_contents?.map((content, i) => (
|
{stack?.info?.deployed_contents?.map((content, i) => (
|
||||||
<pre key={i} className="flex flex-col gap-2">
|
<pre key={i} className="flex flex-col gap-2">
|
||||||
@@ -34,7 +34,7 @@ export const StackInfo = ({
|
|||||||
|
|
||||||
{stack?.config?.file_contents ? (
|
{stack?.config?.file_contents ? (
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader>
|
<CardHeader className="flex flex-col gap-2">
|
||||||
latest contents:{" "}
|
latest contents:{" "}
|
||||||
<pre className="flex flex-col gap-2">
|
<pre className="flex flex-col gap-2">
|
||||||
defined in UI:
|
defined in UI:
|
||||||
@@ -46,7 +46,7 @@ export const StackInfo = ({
|
|||||||
stack?.info?.remote_contents &&
|
stack?.info?.remote_contents &&
|
||||||
stack?.info?.remote_contents.length > 0 && (
|
stack?.info?.remote_contents.length > 0 && (
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader>
|
<CardHeader className="flex flex-col gap-2">
|
||||||
latest contents:{" "}
|
latest contents:{" "}
|
||||||
{stack?.info?.remote_contents?.map((content, i) => (
|
{stack?.info?.remote_contents?.map((content, i) => (
|
||||||
<pre key={i} className="flex flex-col gap-2">
|
<pre key={i} className="flex flex-col gap-2">
|
||||||
@@ -60,7 +60,7 @@ export const StackInfo = ({
|
|||||||
)}
|
)}
|
||||||
{stack?.info?.remote_errors && stack?.info?.remote_errors.length > 0 && (
|
{stack?.info?.remote_errors && stack?.info?.remote_errors.length > 0 && (
|
||||||
<Card>
|
<Card>
|
||||||
<CardHeader>
|
<CardHeader className="flex flex-col gap-2">
|
||||||
remote errors:{" "}
|
remote errors:{" "}
|
||||||
{stack?.info?.remote_errors?.map((content, i) => (
|
{stack?.info?.remote_errors?.map((content, i) => (
|
||||||
<pre key={i} className="flex flex-col gap-2">
|
<pre key={i} className="flex flex-col gap-2">
|
||||||
|
|||||||
Reference in New Issue
Block a user