Skip to content

Commit

Permalink
Remove institution specific references
Browse files Browse the repository at this point in the history
  • Loading branch information
Thaddeus McCleary committed Jul 7, 2022
1 parent 6cff9ad commit a4351d4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Seatsmart",
"productName": "Seatsmart",
"version": "2.0.3",
"version": "2.0.4",
"author": "Thaddeus McCleary",
"description": "a classroom participation tracking application",
"scripts": {
Expand Down
7 changes: 3 additions & 4 deletions src/views/Search.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<main>
<div class="result" v-for="(classChart, index) in Object.values(results)" v-if="classChart.length > 0" :key="index">
<sequential-entrance fromTop delay="20">
<TitleBar v-if="classChart.length > 0" :classID="Object.keys(results)[index]" :link="true" />
<TitleBar v-if="classChart.length > 0" :classID="Object.keys(results)[index]" :link="true" />
<div class="name-card-wrapper" v-for="(student, subIndex) in classChart">
<NameCard
:key="`${student}${subIndex}`"
Expand All @@ -36,9 +36,8 @@
<div v-if="noResults" id="noResults">
<img id="searchSplash" src="@/assets/searchimage.svg" alt="search illustration">
<h2>No students were found.</h2>
<h4>Be sure to search using students' "English" names or Tiger IDs.</h4>
<h4 v-if="!includeArchived">
Also, you can click the
Click the
<img class="archive-icon" src="@/assets/archivewhite.svg" alt="enable archive icon"> icon above to include students from archived classes.
</h4>
</div>
Expand All @@ -57,7 +56,7 @@
{type: 'spacer', size: 'flexible'},
{type: 'button', label: '📦', method: function() {toggleIncludeArchived()}},
{type: 'button', label: '🎫', method: function() {toggleCardStyle()}}
]"
]"
/>
</div>
</template>
Expand Down

0 comments on commit a4351d4

Please sign in to comment.