Add commit message to admin config checklist
This commit is contained in:
parent
56eec8d1fa
commit
28533570df
@ -81,6 +81,7 @@ export default function SiteChecklistClient({
|
||||
secret,
|
||||
baseUrl,
|
||||
commitSha,
|
||||
commitMessage,
|
||||
}: ConfigChecklistStatus &
|
||||
Partial<Awaited<ReturnType<typeof testConnectionsAction>>> & {
|
||||
simplifiedView?: boolean
|
||||
@ -618,7 +619,9 @@ export default function SiteChecklistClient({
|
||||
<div>
|
||||
<span className="font-bold">Commit</span>
|
||||
|
||||
{commitSha || 'Not Found'}
|
||||
{commitSha
|
||||
? <span title={commitMessage}>commitSha</span>
|
||||
: 'Not Found'}
|
||||
</div>
|
||||
</div>}
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user