Skip to content

Commit

Permalink
Merge pull request #101 from phasehq/fix--log-screen-mask
Browse files Browse the repository at this point in the history
fix: log screen mask
  • Loading branch information
rohan-chaturvedi authored Nov 3, 2023
2 parents bc54389 + 6df1320 commit 5f90e70
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion frontend/components/logs/SecretLogs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,9 @@ export default function SecretLogs(props: { app: string }) {
</div>
</td>
<td className="whitespace-nowrap px-6 py-4 font-mono">{log.environment.envType}</td>
<td className="whitespace-nowrap px-6 py-4 font-mono">{decryptedEvent?.key}</td>
<td className="whitespace-nowrap px-6 py-4 font-mono ph-no-capture">
{decryptedEvent?.key}
</td>
<td className="whitespace-nowrap px-6 py-4 font-medium capitalize">
{relativeTimeStamp()}
</td>
Expand Down

0 comments on commit 5f90e70

Please sign in to comment.