Skip to content

Commit

Permalink
Replace single quotes with double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
obulat committed Sep 22, 2023
1 parent 41a8eb2 commit afc7563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/VSourcesTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export default defineComponent({
function compareProviders(prov1: MediaProvider, prov2: MediaProvider) {
let field1 = prov1[sorting.field]
let field2 = prov2[sorting.field]
if (sorting.field === 'display_name') {
if (sorting.field === "display_name") {
field1 = prov1[sorting.field].toLowerCase()
field2 = prov2[sorting.field].toLowerCase()
}
Expand Down

0 comments on commit afc7563

Please sign in to comment.