diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2024-04-16 21:57:51 +0100 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2024-04-16 21:57:51 +0100 |
commit | 5d5b513449017118134a32571dceba754ca1c4f5 (patch) | |
tree | 8139b9e7ddd060c178527fb1e006f3a251bddb57 /test-apps/options-list/index.html | |
parent | 6c05744eda896ac89e21f8ff32116340564a4773 (diff) | |
download | lustre-5d5b513449017118134a32571dceba754ca1c4f5.tar.gz lustre-5d5b513449017118134a32571dceba754ca1c4f5.zip |
:bug: Fixed a bug where the 'selected' attribute was not properly applied in the DOM.
Diffstat (limited to 'test-apps/options-list/index.html')
-rw-r--r-- | test-apps/options-list/index.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test-apps/options-list/index.html b/test-apps/options-list/index.html new file mode 100644 index 0000000..da137b1 --- /dev/null +++ b/test-apps/options-list/index.html @@ -0,0 +1,15 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + + <title>🚧 app</title> + + <script type="module" src="./priv/static/app.mjs"></script> + </head> + + <body> + <div id="app"></div> + </body> +</html> |