Skip to content

Commit

Permalink
IBX-5151: [Subitems] Clicking arrow in non-focused input priority doe…
Browse files Browse the repository at this point in the history
…sn't change value (#712)
  • Loading branch information
GrabowskiM authored Mar 3, 2023
1 parent ee83750 commit 933c4c5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,32 +89,6 @@
&__priority-value {
max-width: 100%;
padding: 0 calculateRem(10px);

&[readonly] {
cursor: pointer;
}

&[readonly]::-webkit-outer-spin-button,
&[readonly]::-webkit-inner-spin-button {
opacity: 0;
}

&[readonly]:hover::-webkit-outer-spin-button,
&[readonly]:hover::-webkit-inner-spin-button {
opacity: 1;
}

&::-webkit-outer-spin-button,
&::-webkit-inner-spin-button {
opacity: 1;
}

&[readonly] {
-webkit-appearance: textfield;
}
&[readonly]:hover {
-webkit-appearance: number-input;
}
}

&__btn {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ export default class TableViewItemComponent extends PureComponent {
const innerWrapperAttrs = {};

if (!this.state.priorityInputEnabled) {
inputAttrs.readOnly = true;
delete inputAttrs.defaultValue;
inputAttrs.value = this.state.priorityValue;
priorityWrapperAttrs.onClick = this.enablePriorityInput;
Expand Down

0 comments on commit 933c4c5

Please sign in to comment.