Skip to content

Commit

Permalink
[MIRROR] Fixes character screen (#1082)
Browse files Browse the repository at this point in the history
* [MIRROR] Fixes character screen [NO GBP] [MDB IGNORE] (#25565)

---------

Co-authored-by: SkyratBot <[email protected]>
Co-authored-by: Jeremiah <[email protected]>
Co-authored-by: Iajret <[email protected]>
  • Loading branch information
4 people authored Dec 12, 2023
1 parent 7c4c91f commit 67f7a28
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tgui/packages/tgui/interfaces/PreferencesMenu/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,8 @@ const MainFeature = (props: {
}
>
<Button
onClick={() => {
onClick={(event) => {
event.stopPropagation();
if (isOpen) {
handleClose();
} else {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
import { Button, Stack } from '../../../../../../components';
import { CheckboxInput, FeatureChoiced, FeatureChoicedServerData, FeatureDropdownInput, FeatureNumberInput, FeatureNumeric, FeatureToggle, FeatureValueProps } from '../../base';
import {
CheckboxInput,
FeatureChoiced,
FeatureChoicedServerData,
FeatureDropdownInput,
FeatureNumberInput,
FeatureNumeric,
FeatureToggle,
FeatureValueProps,
} from '../../base';

const FeatureBlooperDropdownInput = (
props: FeatureValueProps<string, string, FeatureChoicedServerData>
props: FeatureValueProps<string, string, FeatureChoicedServerData>,
) => {
return (
<Stack>
Expand Down

0 comments on commit 67f7a28

Please sign in to comment.