Skip to content

Commit

Permalink
crew manifest verb
Browse files Browse the repository at this point in the history
  • Loading branch information
larentoun committed Jul 13, 2024
1 parent 521ca20 commit 7849b8e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tgui/packages/tgui/interfaces/CrewManifest.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Icon, Section, Table, Tooltip } from 'tgui-core/components';
import { classes } from 'tgui-core/react';

import { useBackend } from '../backend';
import { DEPARTMENTS_RU } from '../bandastation/ru_jobs';
import { Window } from '../layouts';

const commandJobs = [
Expand All @@ -26,9 +27,9 @@ export const CrewManifest = (props) => {
className={'CrewManifest--' + dept}
key={dept}
title={
dept +
(DEPARTMENTS_RU[dept] || dept) +
(dept !== 'Misc'
? ` (${positions[dept].open} positions open)`
? ` (позиций открыто: ${positions[dept].open})`
: '')
}
>
Expand Down

0 comments on commit 7849b8e

Please sign in to comment.