Skip to content

Commit

Permalink
IBX-9358 Fixed discard button in number input
Browse files Browse the repository at this point in the history
  • Loading branch information
bozatko committed Jan 17, 2025
1 parent d6d83c7 commit 9dbb431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bundle/Resources/public/js/scripts/admin.input.text.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
const recalculateInputStyling = (inputActionsContainer) => {
const input = inputActionsContainer.closest('.ibexa-input-text-wrapper').querySelector('input');

if (!input) {
if (!input || input.type === 'number') {
return;
}

Expand Down

0 comments on commit 9dbb431

Please sign in to comment.