split the error summary from the details

This commit is contained in:
buzz-lightsnack-2007 2024-05-13 15:46:14 +08:00
parent 2e8cc5f001
commit 22befff022

View file

@ -1,15 +1,18 @@
<html> <html>
<head> <head>
<script src="../../styles/external/materialize/js/materialize.js"></script> <script src="/styles/external/materialize/js/materialize.js"></script>
<script src="../../scripts/pages/error.js" type="module"></script> <script src="/scripts/pages/error.js" type="module"></script>
<link href="../styles/popup.css" rel="stylesheet" type="text/css" />
</head> </head>
<body id="error"> <body id="error">
<summary>
<h1 data-icon="alert-circle"></h1> <h1 data-icon="alert-circle"></h1>
<label class="flow-text" data-error="name"></label> <label class="flow-text" data-error="name"></label>
<label for="error_msg_steps"></label> <label for="error_msg_GUI_body"></label>
<label data-error="message"></label> <label data-error="message"></label>
</summary>
<details>
<label><code data-error="stack"></code></label> <label><code data-error="stack"></code></label>
</details>
<button class="btn" data-action="refresh" for="refresh" role="primary"></button> <button class="btn" data-action="refresh" for="refresh" role="primary"></button>
</body> </body>
</html> </html>