Skip to content

Commit

Permalink
Improve game UI.
Browse files Browse the repository at this point in the history
  • Loading branch information
TyVik committed Oct 9, 2022
1 parent c35becc commit 84be0ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/games/components/Infobox/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
align-items: center;
}

.infobox-header .collapse-icon {
.infobox-header i {
cursor: pointer;
}

Expand Down
2 changes: 1 addition & 1 deletion frontend/workshop/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Workshop extends React.Component {
}, 300);

loadOptions = (field, inputValue, callback) => {
if ((inputValue === '') && (field !== 'tag')) {
if ((inputValue === '') && (field !== 'tag') && (field !== 'user')) {
return callback([]);
}
defer(async () => {
Expand Down

0 comments on commit 84be0ea

Please sign in to comment.