main
html 19 lines 527 Bytes
Raw
1 <html>
2 <head>
3 <script type="module">
4 import { store } from "/plugins/_chat_naming/webui/chat-naming-store.js";
5 </script>
6 </head>
7 <body>
8 <div x-data>
9 <button type="button" class="dropdown-item" role="menuitem"
10 @click="$store.chatNaming.openFromMenu(
11 $store.sidebar.rowMenuOpenId,
12 $store.sidebar.rowMenuKind,
13 )">
14 <x-icon name="edit"></x-icon>
15 <span x-text="$store.sidebar.rowMenuKind === 'task' ? 'Rename Task' : 'Rename Chat'"></span>
16 </button>
17 </div>
18 </body>
19 </html>