Skip to content

Commit

Permalink
Fix:Material symbols icon to use check instead of checkmark
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Jul 29, 2024
1 parent 73196f9 commit ed70f3a
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion client/components/ui/InputDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<span class="font-normal ml-3 block truncate">{{ item }}</span>
</div>
<span v-if="input === item" class="text-yellow-400 absolute inset-y-0 right-0 flex items-center pr-4">
<span class="material-symbols text-xl">checkmark</span>
<span class="material-symbols text-xl">check</span>
</span>
</li>
</template>
Expand Down
2 changes: 1 addition & 1 deletion client/components/ui/MultiSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<span class="font-normal ml-3 block truncate">{{ item }}</span>
</div>
<span v-if="selected.includes(item)" class="text-yellow-400 absolute inset-y-0 right-0 flex items-center pr-4">
<span class="material-symbols text-xl">checkmark</span>
<span class="material-symbols text-xl">check</span>
</span>
</li>
</template>
Expand Down
4 changes: 2 additions & 2 deletions client/components/ui/MultiSelectDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<p class="font-normal ml-3 block truncate">{{ item.text }}</p>

<div v-if="selected.includes(item.value)" class="text-yellow-400 absolute inset-y-0 right-0 my-auto w-5 h-5 mr-3 overflow-hidden">
<span class="material-symbols text-xl">checkmark</span>
<span class="material-symbols text-xl">check</span>
</div>
</li>
</template>
Expand Down Expand Up @@ -139,4 +139,4 @@ export default {
if (this.menu) this.menu.remove()
}
}
</script>
</script>
4 changes: 2 additions & 2 deletions client/components/ui/MultiSelectQueryInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<span class="font-normal ml-3 block truncate">{{ item.name }}</span>
</div>
<span v-if="getIsSelected(item.id)" class="text-yellow-400 absolute inset-y-0 right-0 flex items-center pr-4">
<span class="material-symbols text-xl">checkmark</span>
<span class="material-symbols text-xl">check</span>
</span>
</li>
</template>
Expand Down Expand Up @@ -370,4 +370,4 @@ input:read-only {
color: #aaa;
background-color: #444;
}
</style>
</style>
2 changes: 1 addition & 1 deletion client/components/ui/QueryInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<span class="font-normal ml-3 block truncate">{{ item.name }}</span>
</div>
<span v-if="isItemSelected(item)" class="text-yellow-400 absolute inset-y-0 right-0 flex items-center pr-4">
<span class="material-symbols text-xl">checkmark</span>
<span class="material-symbols text-xl">check</span>
</span>
</li>
</template>
Expand Down

0 comments on commit ed70f3a

Please sign in to comment.