diff options
author | Leo Toneff <43667677+bragle@users.noreply.github.com> | 2024-10-30 18:37:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 10:37:07 -0700 |
commit | 9a7cf04d0fb9d4fbf0d943b7a7c5a761c014eb09 (patch) | |
tree | 4b9a9720c5dc481ed33ed38d17356cbde76b7419 | |
parent | 6b3b81d13559055830ad3e2867015e6fb78f7846 (diff) | |
download | wabt-9a7cf04d0fb9d4fbf0d943b7a7c5a761c014eb09.tar.gz wabt-9a7cf04d0fb9d4fbf0d943b7a7c5a761c014eb09.tar.bz2 wabt-9a7cf04d0fb9d4fbf0d943b7a7c5a761c014eb09.zip |
Fix label 'for' attributes to match input 'id's in demo (#2499)
-rw-r--r-- | docs/demo/wasm2wat/index.html | 2 | ||||
-rw-r--r-- | docs/demo/wat2wasm/index.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/demo/wasm2wat/index.html b/docs/demo/wasm2wat/index.html index 766fb995..01de356e 100644 --- a/docs/demo/wasm2wat/index.html +++ b/docs/demo/wasm2wat/index.html @@ -58,7 +58,7 @@ <input type="checkbox" id="code_metadata"><label for="code_metadata">code metadata</label> <input type="checkbox" id="gc"><label for="gc">gc</label> <input type="checkbox" id="memory64"><label for="memory64">memory64</label> - <input type="checkbox" id="multi_memory"><label for="gc">multi memory</label> + <input type="checkbox" id="multi_memory"><label for="multi_memory">multi memory</label> <input type="checkbox" id="extended_const"><label for="extended_const">extended const</label> <input type="checkbox" id="relaxed_simd"><label for="relaxed_simd">relaxed simd</label> </div> diff --git a/docs/demo/wat2wasm/index.html b/docs/demo/wat2wasm/index.html index 14329c95..69919e79 100644 --- a/docs/demo/wat2wasm/index.html +++ b/docs/demo/wat2wasm/index.html @@ -55,7 +55,7 @@ <input type="checkbox" id="code_metadata"><label for="code_metadata">code metadata</label> <input type="checkbox" id="gc"><label for="gc">gc</label> <input type="checkbox" id="memory64"><label for="memory64">memory64</label> - <input type="checkbox" id="multi_memory"><label for="gc">multi memory</label> + <input type="checkbox" id="multi_memory"><label for="multi_memory">multi memory</label> <input type="checkbox" id="extended_const"><label for="extended_const">extended const</label> <input type="checkbox" id="relaxed_simd"><label for="relaxed_simd">relaxed simd</label> </div> |