Skip to content

Commit 23f5fd8

Browse files
committed
Revert "Merge pull request #137 from formio/FIO-10462"
This reverts commit 0efa466.
1 parent 9535b73 commit 23f5fd8

9 files changed

Lines changed: 172 additions & 196 deletions

File tree

src/templates/bootstrap3/datagrid/form.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
{% if (ctx.hasRemoveButtons) { %}
5151
<td class="col-md-1">
5252
<button type="button" class="btn btn-default formio-button-remove-row" ref="{{ctx.datagridKey}}-removeRow">
53-
<i class="{{ctx.iconClass('circle-xmark')}}"></i>
53+
<i class="{{ctx.iconClass('remove-circle')}}"></i>
5454
</button>
5555
</td>
5656
{% } %}

src/templates/bootstrap3/iconClass.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export default (iconset, name, spinning) => {
1414
name = 'question-circle';
1515
break;
1616
case 'remove-circle':
17-
case 'circle-xmark':
1817
name = 'times-circle-o';
1918
break;
2019
case 'new-window':

src/templates/bootstrap3/multiValueRow/form.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% if (!ctx.disabled) { %}
66
<td>
77
<button type="button" class="btn btn-default" ref="removeRow">
8-
<i class="{{ctx.iconClass('circle-xmark')}}"></i>
8+
<i class="{{ctx.iconClass('remove-circle')}}"></i>
99
</button>
1010
</td>
1111
{% } %}

src/templates/bootstrap4/datagrid/form.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
{% if (ctx.hasRemoveButtons) { %}
5252
<td class="col-1">
5353
<button type="button" class="btn btn-secondary formio-button-remove-row" ref="{{ctx.datagridKey}}-removeRow" tabindex="{{ctx.tabIndex}}" aria-label="{{ctx.t('remove')}}">
54-
<i class="{{ctx.iconClass('circle-xmark')}}"></i>
54+
<i class="{{ctx.iconClass('remove-circle')}}"></i>
5555
</button>
5656
</td>
5757
{% } %}

src/templates/bootstrap4/iconClass.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export default (iconset, name, spinning) => {
1414
name = 'question-circle';
1515
break;
1616
case 'remove-circle':
17-
case 'circle-xmark':
1817
name = 'times-circle-o';
1918
break;
2019
case 'new-window':

src/templates/bootstrap4/multiValueRow/form.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% if (!ctx.disabled) { %}
66
<td>
77
<button type="button" class="btn btn-secondary" ref="removeRow">
8-
<i class="{{ctx.iconClass('circle-xmark')}}"></i>
8+
<i class="{{ctx.iconClass('remove-circle')}}"></i>
99
</button>
1010
</td>
1111
{% } %}

src/templates/bootstrap5/datagrid/form.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
{% if (ctx.hasRemoveButtons) { %}
5252
<td class="col-1">
5353
<button type="button" class="btn btn-secondary formio-button-remove-row" ref="{{ctx.datagridKey}}-removeRow" tabindex="{{ctx.tabIndex}}" aria-label="{{ctx.t('remove')}}">
54-
<i class="{{ctx.iconClass('circle-xmark')}}"></i>
54+
<i class="{{ctx.iconClass('remove-circle')}}"></i>
5555
</button>
5656
</td>
5757
{% } %}

0 commit comments

Comments
 (0)