We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2beac8b commit 4e966a4Copy full SHA for 4e966a4
packages/xl-odt-exporter/src/odt/odtExporter.tsx
@@ -230,7 +230,7 @@ export class ODTExporter<
230
</office:document-content>
231
);
232
233
- const manifest = (
+ const manifestNode = (
234
<manifest:manifest
235
xmlns:manifest="urn:oasis:names:tc:opendocument:xmlns:manifest:1.0"
236
manifest:version="1.3">
@@ -281,7 +281,7 @@ export class ODTExporter<
281
282
283
const contentXml = renderToString(content);
284
- const manifestXml = renderToString(manifest);
+ const manifestXml = renderToString(manifestNode);
285
286
zipWriter.add("content.xml", new TextReader(contentXml));
287
zipWriter.add("styles.xml", new TextReader(stylesXml));
0 commit comments