More testmerge fixes

This commit is contained in:
Artur
2020-07-03 15:16:02 +03:00
parent 0d9609af29
commit 6c4e733a38
8 changed files with 67 additions and 39 deletions
@@ -34,14 +34,14 @@ export const AirlockElectronics = (props, context) => {
})} />
<Button
icon={unres_direction & 2 ? 'check-square-o' : 'square-o'}
content="East"
content="South"
selected={unres_direction & 2}
onClick={() => act('direc_set', {
unres_direction: '2',
})} />
<Button
icon={unres_direction & 4 ? 'check-square-o' : 'square-o'}
content="South"
content="East"
selected={unres_direction & 4}
onClick={() => act('direc_set', {
unres_direction: '4',
@@ -177,7 +177,7 @@ export const TelecommsMonitor = (props, context) => {
.find(channel => channel.freq === thing);
return (
(valid) ? (
<Box as="span" style={`color: ${valid.color}`}>
<Box as="span" color={valid.color}>
{`[${thing}] (${valid.name}) `}
</Box>
) : (
@@ -268,7 +268,7 @@ export const TeleLogs = (props, context) => {
icon="sync"
onClick={() => act('refresh')}
/>
<Button
<Button.Confirm
content="Delete All Logs"
icon="trash"
disabled={!log_to_use || !(log_to_use && log_to_use.length)}
File diff suppressed because one or more lines are too long