more descriptive button label
parent
0bcc08a5ef
commit
d08ffcb61d
|
|
@ -44,7 +44,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
<div class="control">
|
<div class="control">
|
||||||
<button class="button is-small is-primary button--editFeeCategory" type="button">
|
<button class="button is-small is-primary button--editFeeCategory" type="button">
|
||||||
<span class="icon is-small"><i class="fas fa-pencil-alt" aria-hidden="true"></i></span>
|
<span class="icon is-small"><i class="fas fa-pencil-alt" aria-hidden="true"></i></span>
|
||||||
<span>Edit Category</span>
|
<span>
|
||||||
|
${feeCategory.isGroupedFee
|
||||||
|
? 'Edit Grouped Fee'
|
||||||
|
: 'Edit Category'}
|
||||||
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="control">
|
<div class="control">
|
||||||
|
|
|
||||||
|
|
@ -81,7 +81,13 @@ declare const exports: Record<string, unknown>
|
||||||
<div class="control">
|
<div class="control">
|
||||||
<button class="button is-small is-primary button--editFeeCategory" type="button">
|
<button class="button is-small is-primary button--editFeeCategory" type="button">
|
||||||
<span class="icon is-small"><i class="fas fa-pencil-alt" aria-hidden="true"></i></span>
|
<span class="icon is-small"><i class="fas fa-pencil-alt" aria-hidden="true"></i></span>
|
||||||
<span>Edit Category</span>
|
<span>
|
||||||
|
${
|
||||||
|
feeCategory.isGroupedFee
|
||||||
|
? 'Edit Grouped Fee'
|
||||||
|
: 'Edit Category'
|
||||||
|
}
|
||||||
|
</span>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class="control">
|
<div class="control">
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue