main
html 27 lines 737 Bytes
Raw
1 <html>
2 <head>
3 <title>Model Preset</title>
4 <script type="module">
5 import { store } from "/plugins/_model_config/webui/model-config-store.js";
6 </script>
7 </head>
8
9 <body>
10 <div x-data="$store.modelConfig.createScopedPresetSelector(context)"
11 x-init="await init()">
12 <div class="section-title">Model Preset</div>
13 <div class="section-description">
14 This scope stores only a preset selection. Edit the preset once and every scope using it stays in sync.
15 </div>
16 <div class="scoped-preset-overview">
17 <x-component path="/plugins/_model_config/webui/preset-overview.html"></x-component>
18 </div>
19 </div>
20
21 <style>
22 .scoped-preset-overview {
23 margin-top: 1rem;
24 }
25 </style>
26 </body>
27 </html>