Skip to content

Commit

Permalink
Merge pull request #104 from formio/FIO-9169-builder-icons-fix
Browse files Browse the repository at this point in the history
FIO-9169 Fixed missing icon in formbuilder
  • Loading branch information
brendanbond authored Oct 8, 2024
2 parents ea0f29f + 2d082b1 commit 505540a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/templates/bootstrap5/builderComponent/form.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
class="btn btn-xxs btn-default component-settings-button component-settings-button-move"
ref="moveComponent"
>
<i class="{{ctx.iconClass('move')}}"></i>
<i class="{{ctx.iconClass('arrows')}}"></i>
</div>
{% if (!(ctx.design && ctx.childComponent.type === 'reviewpage')) { %}
<div
Expand Down
2 changes: 1 addition & 1 deletion src/templates/bootstrap5/iconClass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export default (iconset, name, spinning) => {
case 'new-window':
biName = 'window-plus';
break;
case 'move':
case 'arrows':
biName = 'arrows-move';
break;
case 'edit':
Expand Down

0 comments on commit 505540a

Please sign in to comment.