We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 891d6dc commit ac6a6c0Copy full SHA for ac6a6c0
1 file changed
app/components/EditProfileModal.tsx
@@ -58,7 +58,7 @@ export default function EditProfileModal({
58
</Modal.Header>
59
<Modal.Body>
60
<Form>
61
- <Form.Group className="mb-3" controlId="editProfileName">
+ <Form.Group controlId="editProfileName">
62
<Form.Label>Profile Name</Form.Label>
63
<Form.Control
64
type="text"
@@ -69,7 +69,10 @@ export default function EditProfileModal({
69
disabled={isPreset}
70
/>
71
</Form.Group>
72
- <Form.Group className="mb-3" controlId="editProfileCommand">
+ {!isAdd && (profile !== undefined) && <Form.Text className="text-muted">
73
+ {"ID: " + profile!.uuid}
74
+ </Form.Text>}
75
+ <Form.Group className="mt-3" controlId="editProfileCommand">
76
<Form.Label>Launch Command</Form.Label>
77
78
as="textarea"
0 commit comments