Move tags input under name field in all entity editor modals

Remove the separate tags form-group (label, hint toggle, hint text)
from all 14 editor modals and place the tags container directly
below the name input for a cleaner, more compact layout.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-10 12:15:46 +03:00
parent 1559440a21
commit b0a769b781
15 changed files with 15 additions and 124 deletions

View File

@@ -16,6 +16,7 @@
<div class="form-group">
<label for="stream-name" data-i18n="streams.name">Source Name:</label>
<input type="text" id="stream-name" data-i18n-placeholder="streams.name.placeholder" placeholder="My Source" required>
<div id="stream-tags-container"></div>
</div>
<input type="hidden" id="stream-type" value="raw">
@@ -96,15 +97,6 @@
<input type="text" id="stream-description" data-i18n-placeholder="streams.description_placeholder" placeholder="Describe this source...">
</div>
<div class="form-group">
<div class="label-row">
<label data-i18n="tags.label">Tags:</label>
<button type="button" class="hint-toggle" onclick="toggleHint(this)" title="?">?</button>
</div>
<small class="input-hint" style="display:none" data-i18n="tags.hint">Assign tags for grouping and filtering cards</small>
<div id="stream-tags-container"></div>
</div>
<div id="stream-error" class="error-message" style="display: none;"></div>
</form>
</div>