Remove references to the AttributeManager now that it is no longer required

This commit is contained in:
Oliver 2026-04-26 23:52:37 -06:00
parent 0347a00632
commit 14193cbad0
8 changed files with 0 additions and 516 deletions

View file

@ -1,43 +0,0 @@
<div class="attributes">
{{#each attrs as |attr|}}
<div
class="attribute"
data-attribute="{{ attr.id }}"
>
<taf-icon
name="icons/drag-handle"
var:stroke="currentColor"
var:fill="currentColor"
class="attribute-drag-handle"
></taf-icon>
{{#if attr.isNew}}
<input
type="text"
data-bind="{{ attr.id }}.name"
value="{{ attr.name }}"
placeholder="{{localize "taf.Apps.AttributeManager.name-placeholder"}}"
>
{{else}}
<span>{{ attr.name }}</span>
{{/if}}
<label>
{{localize "taf.Apps.AttributeManager.has-max"}}
<input
type="checkbox"
data-bind="{{ attr.id }}.isRange"
{{ checked attr.isRange }}
>
</label>
<button
type="button"
data-action="removeAttribute"
>
{{localize "taf.misc.delete"}}
</button>
</div>
{{else}}
<p>
{{localize "taf.Apps.AttributeManager.no-attributes"}}
</p>
{{/each}}
</div>

View file

@ -1,13 +0,0 @@
<div class="controls">
<button
type="button"
data-action="addNew"
>
{{localize "taf.Apps.AttributeManager.add-new-attribute"}}
</button>
<button
type="submit"
>
{{localize "taf.misc.save-and-close"}}
</button>
</div>