Skip to content

Commit

Permalink
Fix lfs
Browse files Browse the repository at this point in the history
  • Loading branch information
thsparks committed Apr 22, 2024
1 parent 395704f commit 4ce1e3c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions teachertool/src/components/CatalogOverlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const CatalogOverlay: React.FC<CatalogOverlayProps> = ({}) => {
const CatalogHeader: React.FC = () => {
return (
<div className={css["header"]}>
<span className={css["title"]}>{lf("Select the criteria you'd like to include")}</span>
<span className={css["title"]}>{Strings.SelectCriteriaDescription}</span>
<Button
className={css["close-button"]}
rightIcon="fas fa-times-circle"
Expand All @@ -53,9 +53,9 @@ export const CatalogOverlay: React.FC<CatalogOverlayProps> = ({}) => {
<div className={css["catalog-item-label"]}>
<div className={css["action-indicator"]}>
{canAddMore ? (
<i className={classList("fas fa-plus")} title={lf("Add To Checklist")} />
<i className={classList("fas fa-plus")} title={Strings.AddToChecklist} />
) : (
<span className={css["max-label"]}>{lf(Strings.Max)}</span>
<span className={css["max-label"]}>{Strings.Max}</span>
)}
</div>
<ReadOnlyCriteriaDisplay catalogCriteria={catalogCriteria} showDescription={true} />
Expand Down
2 changes: 2 additions & 0 deletions teachertool/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ export namespace Strings {
export const Loading = lf("Loading...");
export const Close = lf("Close");
export const Max = lf("Max");
export const AddToChecklist = lf("Add to Checklist");
export const SelectCriteriaDescription = lf("Select the criteria you'd like to include");
}

export namespace Ticks {
Expand Down

0 comments on commit 4ce1e3c

Please sign in to comment.