Skip to content

Commit

Permalink
Доработка приглашения в меню выбора платформы (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
Roundabout1 authored Sep 6, 2024
1 parent 46607f2 commit 0c45354
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ export const PlatformSelection: React.FC<PlatformSelectionProps> = ({
))}
</div>

<div>{selectedPlatform?.description || 'Пока что нет описания'}</div>
<div className={twMerge(selectedPlatform?.description ?? 'opacity-70')}>
{selectedPlatform?.description ||
'Для начала работы выберите платформу из списка слева. Платформа определяет, для чего создаётся схема и с помощью каких элементов.'}
</div>
</div>
);
};

0 comments on commit 0c45354

Please sign in to comment.