1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add Terminal section title

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2022-02-01 14:56:22 +03:00
parent 2fbad87fbd
commit 48b68e97e6

View File

@ -24,7 +24,9 @@ export const Terminal = observer(() => {
: "System default shell"
);
return (<div>
return (<section>
<h2>Terminal</h2>
<section id="shell">
<SubTitle title="Terminal Shell Path"/>
<Input
@ -74,5 +76,5 @@ export const Terminal = observer(() => {
onChange={(value) => userStore.terminalConfig.fontFamily=value}
/>
</section>
</div>);
</section>);
});