Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change ROAR-Letter name #444

Merged
merged 1 commit into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/components/RoarDataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@
toolTipByHeader(col.header).length > 0
? 'text-decoration: underline dotted #0000CD; text-underline-offset: 3px'
: null,
col.header === 'Letter Names and Sounds' ? 'width: 7em; text-wrap: wrap' : '',
]"
>
{{ col.header }}
Expand Down Expand Up @@ -447,7 +446,7 @@ dateFields = _map(dateFields, (col) => col.field);
let toolTipByHeader = (header) => {
if (header === 'Word') {
return 'Assesses decoding skills at the word level. \n\n Percentile ranges from 0-99 \n Raw Score ranges from 100-900';
} else if (header === 'Letter Names and Sounds') {
} else if (header === 'Letter') {
return 'Assesses decoding skills at the word level. \n\n Percentile ranges from 0-99 \n Raw Score ranges from 0-90';
} else if (header === 'Phoneme') {
return 'Assesses phonological awareness: sound matching and elision. \n\n Percentile ranges from 0-99 \n Raw Score ranges from 0-57';
Expand Down Expand Up @@ -507,7 +506,7 @@ let returnScoreTooltip = (colHeader, colData, fieldPath) => {
toolTip += 'Percentile: ' + colData.scores?.sre?.percentile + '\n';
toolTip += 'Raw Score: ' + colData.scores?.sre?.raw + '\n';
toolTip += 'Standardized Score: ' + colData.scores?.sre?.standard + '\n';
} else if (colHeader === 'Letter Names and Sounds' && colData.scores?.letter) {
} else if (colHeader === 'Letter' && colData.scores?.letter) {
toolTip += getFlags(getIndexTask(colData, 'letter'), colData);
toolTip += 'Raw Score: ' + colData.scores?.letter?.raw + '\n';
} else if (colHeader === 'Palabra' && colData.scores?.['swr-es']?.standard) {
Expand Down
4 changes: 2 additions & 2 deletions src/helpers/reports.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import html2canvas from 'html2canvas';
*/
export const taskDisplayNames = {
letter: {
name: 'Letter Names and Sounds',
name: 'Letter',
extendedTitle: 'ROAR - Letter',
extendedName: 'Letter Names and Sounds',
order: 1,
Expand Down Expand Up @@ -405,7 +405,7 @@ export const taskInfoById = {
letter: {
color: '#E19834',
header: 'ROAR-LETTER NAMES AND SOUNDS',
subheader: 'Single Letter Recognition',
subheader: 'Letter Names and Sounds',
desc:
"ROAR-Letter assesses a student's knowledge of letter " +
'names and letter sounds. Knowing letter names supports the learning of ' +
Expand Down
Loading