Skip to content

Commit

Permalink
Fix [Feature Store] Capitalize the first letter of the sentence in th…
Browse files Browse the repository at this point in the history
…e Schema description. (#2081)
  • Loading branch information
ilan7empest authored Nov 18, 2023
1 parent 875695a commit c006a98
Showing 1 changed file with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ const FeatureSetsPanelSchemaView = ({
<FeatureSetsPanelSection title="Schema">
<div className="schema__description">
<span>
Each feature set must be associated with one or more index column.
when joining feature sets the entity is used as the key column.
Each feature set must be associated with one or more index column. When joining feature
sets, the entity is used as the key column.
</span>
<span>
&nbsp;
<a
className="link"
href="https://docs.mlrun.org/en/latest/feature-store/feature-sets.html"
Expand Down Expand Up @@ -75,14 +78,9 @@ const FeatureSetsPanelSchemaView = ({
floatingLabel
invalid={!validation.isTimestampKeyValid}
label="Timestamp key"
onChange={timestamp_key =>
setData(state => ({ ...state, timestamp_key }))
}
onChange={timestamp_key => setData(state => ({ ...state, timestamp_key }))}
onBlur={event => {
if (
featureStore.newFeatureSet.spec.timestamp_key !==
event.target.value
) {
if (featureStore.newFeatureSet.spec.timestamp_key !== event.target.value) {
setNewFeatureSetSchemaTimestampKey(event.target.value)
}
}}
Expand Down

0 comments on commit c006a98

Please sign in to comment.