Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/Next-Panel/Jexactyl-BR i…
Browse files Browse the repository at this point in the history
…nto develop
  • Loading branch information
drylian committed Dec 6, 2023
2 parents 0495d9d + e619695 commit b04f156
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
12 changes: 6 additions & 6 deletions resources/scripts/components/dashboard/ServerRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const StatusIndicatorBox = styled(GreyRowBox)<{
!$status || $status === 'offline'
? tw`bg-red-500`
: $status === 'running'
? tw`bg-green-500`
: tw`bg-yellow-500`};
? tw`bg-green-500`
: tw`bg-yellow-500`};
}
&:hover .status-bar {
Expand Down Expand Up @@ -119,10 +119,10 @@ export default ({ server, className }: { server: Server; className?: string }) =
{server.isTransferring
? 'Transferindo'
: server.status === 'installing'
? 'Instalando'
: server.status === 'restoring_backup'
? 'Restaurando Backup'
: 'Não Válido'}
? 'Instalando'
: server.status === 'restoring_backup'
? 'Restaurando Backup'
: 'Não Válido'}
</span>
</div>
) : (
Expand Down
10 changes: 5 additions & 5 deletions resources/scripts/components/elements/Spinner.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ const SpinnerComponent = styled.div<Props>`
props.size === 'small'
? tw`w-4 h-4 border-2`
: props.size === 'large'
? css`
${tw`w-16 h-16`};
border-width: 6px;
`
: null};
? css`
${tw`w-16 h-16`};
border-width: 6px;
`
: null};
border-color: ${(props) => (!props.isBlue ? 'rgba(255, 255, 255, 0.2)' : 'hsla(212, 92%, 43%, 0.2)')};
border-top-color: ${(props) => (!props.isBlue ? 'rgb(255, 255, 255)' : 'hsl(212, 92%, 43%)')};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export default ({ children, duration, ...props }: Props) => {
const [enterDuration, exitDuration] = Array.isArray(duration)
? duration
: !duration
? ['duration-200', 'duration-100']
: [duration, duration];
? ['duration-200', 'duration-100']
: [duration, duration];

return (
<Transition
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const ServerConsoleContainer = () => {
{isNodeUnderMaintenance
? 'O Node deste servidor está atualmente em manutenção e todas as ações não estão disponíveis.'
: isInstalling
? 'Atualmente, este servidor está executando seu processo de instalação e a maioria das ações não está disponível.'
: 'Atualmente, este servidor está sendo transferido para outro Node e todas as ações não estão disponíveis.'}
? 'Atualmente, este servidor está executando seu processo de instalação e a maioria das ações não está disponível.'
: 'Atualmente, este servidor está sendo transferido para outro Node e todas as ações não estão disponíveis.'}
</Alert>
)}
<div className={'grid grid-cols-4 gap-4 mb-4'}>
Expand Down
12 changes: 6 additions & 6 deletions resources/scripts/components/tickets/ViewContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ export default () => {
ticket.status === 'pendente'
? 'info'
: ticket.status === 'em-andamento'
? 'info'
: ticket.status === 'não-resolvido'
? 'danger'
: ticket.status === 'resolvido'
? 'success'
: 'warning'
? 'info'
: ticket.status === 'não-resolvido'
? 'danger'
: ticket.status === 'resolvido'
? 'success'
: 'warning'
}
className={'my-4 w-full'}
>
Expand Down

0 comments on commit b04f156

Please sign in to comment.