aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings/components/BaseCommandView.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/settings/components/BaseCommandView.js')
-rw-r--r--modern/src/settings/components/BaseCommandView.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/modern/src/settings/components/BaseCommandView.js b/modern/src/settings/components/BaseCommandView.js
index c578e111..ca81a854 100644
--- a/modern/src/settings/components/BaseCommandView.js
+++ b/modern/src/settings/components/BaseCommandView.js
@@ -25,7 +25,6 @@ const BaseCommandView = ({ item, setItem }) => {
return (
<>
<SelectField
- margin="normal"
value={item.type || ''}
onChange={(e) => setItem({ ...item, type: e.target.value, attributes: {} })}
endpoint="/api/commands/types"
@@ -53,7 +52,6 @@ const BaseCommandView = ({ item, setItem }) => {
}
return (
<TextField
- margin="normal"
type={type === 'number' ? 'number' : 'text'}
value={item.attributes[key]}
onChange={(e) => {