Skip to content

Commit c0da5e9

Browse files
committed
feat: add directions for publishing on empty schema
1 parent bbbd41f commit c0da5e9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

packages/web/app/src/components/ui/input-copy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export function InputCopy(props: { value: string; alignment?: 'center' | 'left'
3131
type="text"
3232
value={props.value}
3333
readOnly
34-
className="bg-secondary truncate text-white"
34+
className={`bg-secondary truncate text-white${props.alignment === 'center' ? 'text-center' : ''}`}
3535
onFocus={ev => ev.target.select()}
3636
/>
3737
</div>

packages/web/app/src/pages/target-apps.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,11 @@ function TargetAppsView(props: {
258258
</div>
259259
</div>
260260
) : !data.data?.target?.latestSchemaVersion ? (
261+
<<<<<<< HEAD
261262
<NoSchemaVersion projectType={data.data?.target?.project?.type ?? null} />
263+
=======
264+
<NoSchemaVersion projectType={data.data?.target?.project?.type} />
265+
>>>>>>> b4163643d (feat: add directions for publishing on empty schema)
262266
) : !data.data.target.appDeployments ? (
263267
<EmptyList
264268
title="Hive is waiting for your first app deployment"

0 commit comments

Comments
 (0)