demo merge conflict

This commit is contained in:
Michael Lively 2022-08-23 16:10:56 -07:00 committed by GitHub
parent ae1167bd94
commit 02cb45c3cb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,7 +124,7 @@ function encodeBase64(buffer: Uint8Array, padded = true, urlSafe = false) {
}
function buildMetadata(b64: string, cell: vscode.NotebookCell, filename: string, filetype: string, startingAttachments: any): { [key: string]: any } {
const outputMetadata = { ...cell.metadata };
const outputMetadata = {};
if (!outputMetadata.custom) {
outputMetadata['custom'] = { 'attachments': { [filename]: { 'image/png': b64 } } };