Skip to content

Commit

Permalink
21032: Added namespace to featureAttributeTypeLabel to ensure it is f…
Browse files Browse the repository at this point in the history
…ound ac… (#11)
  • Loading branch information
lancegliser authored Aug 1, 2024
1 parent 7303122 commit 618ad22
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ import { FeatureAttributeTypeFieldI18nBundle as i18n } from "./FeatureAttributeT

export const featureAttributeTypeName = "type";

export const featureAttributeTypeLabel = i18n.strings.label;
export const featureAttributeTypeLabel = [
i18n.namespace,
i18n.strings.label,
].join(":");

export const featureAttributeTypeOptions = {
continuous: {
Expand Down

0 comments on commit 618ad22

Please sign in to comment.