Search: Change order of sort options #2620

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer 2022-11-02 09:28:06 +01:00
parent 2fb5bc61d1
commit 9f5ef7dd33

View file

@ -202,15 +202,15 @@ export default {
{value: 'list', text: this.$gettext('List')},
],
'sorting': [
{value: 'added', text: this.$gettext('Recently Added')},
{value: 'newest', text: this.$gettext('Newest First')},
{value: 'oldest', text: this.$gettext('Oldest First')},
{value: 'relevance', text: this.$gettext('Most Relevant')},
{value: 'similar', text: this.$gettext('Visual Similarity')},
{value: 'added', text: this.$gettext('Recently Added')},
{value: 'edited', text: this.$gettext('Recently Edited')},
{value: 'name', text: this.$gettext('File Name')},
{value: 'size', text: this.$gettext('File Size')},
{value: 'duration', text: this.$gettext('Video Duration')},
{value: 'edited', text: this.$gettext('Recently Edited')},
{value: 'relevance', text: this.$gettext('Most Relevant')},
{value: 'similar', text: this.$gettext('Visual Similarity')},
],
},
};