Fixed test and removed accidentally committed code

This commit is contained in:
Adam Gastineau 2025-02-10 12:29:20 -08:00
parent 900b5b4f77
commit bf4aa526d4
2 changed files with 12 additions and 16 deletions

View file

@ -99,10 +99,6 @@ const InnerMetadataView = () => {
</CopyToClipboardContainer> </CopyToClipboardContainer>
</div> </div>
); );
return <div className='m-1 ml-5' style={{ }} key={propertyName}>
<span style={{ fontWeight: 'bold' }} title={propertyName}>{propertyName}</span>
{valueString && <CopyToClipboardContainer value={valueString}>: <span title={trimmedValue}>{linkifyText(trimmedValue)}</span></CopyToClipboardContainer>}
</div>;
})} })}
</div> </div>
</div>; </div>;

View file

@ -1238,7 +1238,7 @@ for (const useIntermediateMergeReport of [true, false] as const) {
- link "Logs" - link "Logs"
- link "Pull Request" - link "Pull Request"
- link /^[a-f0-9]{7}$/ - link /^[a-f0-9]{7}$/
- text: 'foo: value1 bar: {"prop":"value2"} baz: ["value3",123]' - text: 'foo : value1 bar : {"prop":"value2"} baz : ["value3",123]'
`); `);
}); });