Browse Source

fix(discover-alpha): form labels (#15415)

Dora 5 years ago
parent
commit
d0a1c95bee

+ 6 - 6
src/sentry/static/sentry/app/views/eventsV2/table/tableModalEditColumn.tsx

@@ -179,8 +179,8 @@ class TableModalEditColumnBodyForm extends React.Component<
             <FormRowItemLeft>
               <SelectField
                 name="aggregation"
-                label={t('Select')}
-                placeholder="Aggregate"
+                label={t('Aggregate')}
+                placeholder="Select Aggregate"
                 choices={this.state.aggregations}
                 onChange={this.onChangeAggregation}
               />
@@ -189,8 +189,8 @@ class TableModalEditColumnBodyForm extends React.Component<
               <SelectField
                 required
                 name="field"
-                label={t('Column')}
-                placeholder="Column"
+                label={t('Column Type')}
+                placeholder="Select Column Type"
                 choices={this.state.fields}
                 onChange={this.onChangeField}
               />
@@ -201,8 +201,8 @@ class TableModalEditColumnBodyForm extends React.Component<
               required
               name="name"
               value={this.state.name}
-              label={t('Column Name')}
-              placeholder="Column Name"
+              label={t('Display Name')}
+              placeholder="Display Name"
               onChange={this.onChangeName}
             />
           </FormRow>