From 5bf095ed7f175078dd0df2c33ce1ecb6a39610ef Mon Sep 17 00:00:00 2001 From: SandPoot Date: Thu, 30 Sep 2021 12:08:32 -0300 Subject: [PATCH] Adds tips to matrix --- tgui/packages/tgui/interfaces/Colormate.js | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/tgui/packages/tgui/interfaces/Colormate.js b/tgui/packages/tgui/interfaces/Colormate.js index bb56f294a5..9dd2267406 100644 --- a/tgui/packages/tgui/interfaces/Colormate.js +++ b/tgui/packages/tgui/interfaces/Colormate.js @@ -1,5 +1,5 @@ import { useBackend } from '../backend'; -import { Button, Flex, NoticeBox, NumberInput, Section, Tabs } from '../components'; +import { Button, Flex, Icon, NoticeBox, NumberInput, Section, Tabs } from '../components'; import { Window } from '../layouts'; export const Colormate = (props, context) => { @@ -7,7 +7,7 @@ export const Colormate = (props, context) => { const { matrixactive, temp } = data; const item = data.item || []; return ( - + {temp ? ( {temp} @@ -83,7 +83,7 @@ export const ColormateNoMatrix = (props, context) => { return (
- +
);