Skip to content

Commit

Permalink
fixing standards headings and math standards in EDU Lesson template
Browse files Browse the repository at this point in the history
  • Loading branch information
stephiescastle committed Sep 9, 2024
1 parent 451b1e6 commit c2c5b53
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions packages/vue/src/components/MetaPanel/MetaPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const standardsEla = computed(() => {
return sortedStandards.value ? sortedStandards.value['ccss_english_language_arts'] : undefined
})
const standardsMath = computed(() => {
return sortedStandards.value ? sortedStandards.value['ccss_maths'] : undefined
return sortedStandards.value ? sortedStandards.value['ccss_math'] : undefined
})
const standardsNgss = computed(() => {
return sortedStandards.value ? sortedStandards.value['ngss'] : undefined
Expand Down Expand Up @@ -185,7 +185,7 @@ const standardsIste = computed(() => {
<div class="w-full lg:grid grid-cols-2 lg:gap-6 xl:gap-10">
<div v-if="standardsEla">
<div class="text-base font-semibold text-gray-dark mb-4">
English Language Arts Standards
English Language Arts Standards (CCSS - ELA)
</div>
<span class="sr-only">.</span>
<MetaPanelAccordion
Expand All @@ -195,7 +195,7 @@ const standardsIste = computed(() => {
</div>
<div v-if="standardsMath">
<div class="text-base font-semibold text-gray-dark mb-4">
Common Core State Standards For Math
Math Standards (CCSS - Math)
</div>
<span class="sr-only">.</span>
<MetaPanelAccordion
Expand All @@ -205,7 +205,7 @@ const standardsIste = computed(() => {
</div>
<div v-if="standardsNgss">
<div class="text-base font-semibold text-gray-dark mb-4">
Next Generation Science Standards
Science Standards (NGSS)
</div>
<span class="sr-only">.</span>
<MetaPanelAccordion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const BaseStory = {
domain: {
domain: 'Counting and Cardinality'
},
type: 'ccss_maths'
type: 'ccss_math'
}
},
{
Expand All @@ -136,7 +136,7 @@ export const BaseStory = {
domain: {
domain: 'Counting and Cardinality'
},
type: 'ccss_maths'
type: 'ccss_math'
}
},
{
Expand Down

0 comments on commit c2c5b53

Please sign in to comment.