Skip to content

Commit

Permalink
+changelog-ignore: fix: FE build
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdcdev committed Jun 6, 2024
1 parent f579c82 commit 845f84e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ const editors: Array<ManifestPropertyEditorUi> = [
properties: [
{
alias: "wpm",
name: "Words per minute",
label: "Words per minute",
description: "The average number of words per minute a person can read (studies suggest 150-250)",
propertyEditorUiAlias: "Umb.PropertyEditorUi.Integer"
},
{
alias: "minUnit",
name: "Minimum unit",
label: "Minimum unit",
description: "The minimum unit of time to display (e.g. seconds, minutes, hours)",
propertyEditorUiAlias: "Umb.PropertyEditorUi.Dropdown",
config: [
Expand All @@ -39,7 +39,7 @@ const editors: Array<ManifestPropertyEditorUi> = [
},
{
alias: "maxUnit",
name: "Maximum unit",
label: "Maximum unit",
description: "The maximum unit of time to display (e.g. seconds, minutes, hours)",
propertyEditorUiAlias: "Umb.PropertyEditorUi.Dropdown",
config: [
Expand All @@ -56,7 +56,7 @@ const editors: Array<ManifestPropertyEditorUi> = [
},
{
alias: "hideVariationWarning",
name: "Hide variation warning",
label: "Hide variation warning",
description: "Hides the warning shown when a content type varies by culture but the data type is invariant",
propertyEditorUiAlias: "Umb.PropertyEditorUi.Toggle"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ export default class ReadingTimePropertyEditorUi extends UmbElementMixin(LitElem
}

renderVariationAlert() {
debugger
if (this.hideVariationWarning || this.culture) {
return nothing;
}
Expand Down

0 comments on commit 845f84e

Please sign in to comment.