Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit a1c48f6

Browse files
i hate javascript!!!
1 parent dac65ea commit a1c48f6

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tgui/packages/tgui/interfaces/SkillMenu.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,13 @@ export const SkillMenu = (props, context) => {
5050
<Button
5151
fluid
5252
bold
53-
//icon="syringe"
5453
mt="8px"
5554
content=" Confirm"
5655
color="green"
5756
textAlign="center"
5857
fontSize="24px"
5958
lineHeight="30px"
60-
disabled = {allocated_points == 0}
59+
disabled={allocated_points === 0}
6160
onClick={() => act('confirm')}
6261
/>
6362
</Section>
@@ -70,7 +69,7 @@ const AdjustSkill = (props, context) => {
7069
const { act, data } = useBackend(context);
7170
const { skill, name, index, tooltip } = props;
7271
const { skills, skill_points, allocated_points, exceptional_skill } = data;
73-
const { base, allocated } = skills[index]
72+
const { base, allocated } = skills[index];
7473

7574
return (
7675
<LabeledList.Item label={name}>

0 commit comments

Comments
 (0)