Merge branch 'main' into feature/Feature-Token-Support

This commit is contained in:
WBHarry 2025-07-12 15:33:47 +02:00
commit 524b3fa921
21 changed files with 129 additions and 70 deletions

View file

@ -1,13 +1,12 @@
<form id="action-type-select">
<ul class="unlist list-select">
<header class="dialog-header">
<h1>{{itemName}}</h1>
</header>
<ul class="actions-list">
{{#each types}}
<li>
<label>
{{! TODO: remove dh-icon}}
<dh-icon class="dh-icon fas {{icon}}"></dh-icon>
<span>{{localize name}}</span>
<input type="radio" name="type" value="{{id}}" {{#if (eq @index 0)}}checked{{/if}}>
</label>
<li class="action-item">
<input type="radio" name="type" value="{{id}}" {{#if (eq @index 0)}}checked{{/if}}>
<span class="label">{{localize name}}</span>
</li>
{{/each}}
</ul>