Compare commits

..

No commits in common. '3f3b9d0b9e719a13ba80a1bd01045b84cddf5755' and '9dbb6f7b2e82cfd91279ba0cb6381cb51e61ce25' have entirely different histories.

3
.gitmodules vendored

@ -1,3 +0,0 @@
[submodule "utfdump"]
path = utfdump
url = https://github.com/pantonshire/utfdump.git

@ -11,7 +11,7 @@ const nextConfig = {
loadedWasm = true; loadedWasm = true;
nextConfig.plugins.push( nextConfig.plugins.push(
new WasmPackPlugin({ new WasmPackPlugin({
crateDirectory: path.resolve(__dirname, 'utfdump', 'wasm'), crateDirectory: path.resolve(__dirname, '..', 'utfdump', 'wasm'),
outDir: path.resolve(__dirname, 'wasm', 'utfdump'), outDir: path.resolve(__dirname, 'wasm', 'utfdump'),
forceMode: 'production', forceMode: 'production',
extraArgs: '--target web', extraArgs: '--target web',

@ -67,10 +67,9 @@ export function OutputTable(props: { currentString: string }) {
} }
} }
let table; return (
<section className={styles.table_container}>
if (rows.length > 0) { <div className={styles.overflow_scroll}>
table = (
<table id={styles.output_table}> <table id={styles.output_table}>
<thead> <thead>
<tr> <tr>
@ -94,15 +93,6 @@ export function OutputTable(props: { currentString: string }) {
{rows} {rows}
</tbody> </tbody>
</table> </table>
);
} else {
table = (<></>);
}
return (
<section className={styles.table_container}>
<div className={styles.overflow_scroll}>
{table}
</div> </div>
</section> </section>
); );

@ -1 +0,0 @@
Subproject commit 0d1872b902d6d4211415932caa539bc951a9ec80
Loading…
Cancel
Save