Skip to content

Commit 68ddc10

Browse files
Refactor mod dashboard layout by removing mod list and details sections, and enhancing search functionality.
1 parent e9345cb commit 68ddc10

File tree

1 file changed

+7
-12
lines changed

1 file changed

+7
-12
lines changed

ui/chrome/moddashboard/index.html

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,13 @@
1111
<h1>Mod Dashboard</h1>
1212
</header>
1313
<main>
14-
<section id="mod-list">
15-
<h2>Installed Mods</h2>
16-
<ul id="mod-list-items">
17-
<!-- Mod items will be dynamically inserted here -->
18-
</ul>
19-
</section>
20-
<section id="mod-details">
21-
<h2>Mod Details</h2>
22-
<div id="mod-info">
23-
<!-- Mod details will be dynamically inserted here -->
24-
</div>
25-
</section>
14+
<div>
15+
<input type="text" id="searchText" placeholder="Search for mods...">
16+
<button id="search">Search</button>
17+
</div>
18+
<div id="result">
19+
20+
</div>
2621
</main>
2722
<script src="../js/moddashboard.js" defer type="module"></script>
2823
</html>

0 commit comments

Comments
 (0)