From 8478fbc27f97d77e12da68aeff6ef27d71fe1844 Mon Sep 17 00:00:00 2001 From: Dimitri Mitropoulos Date: Mon, 9 Aug 2021 15:34:46 -0400 Subject: [PATCH] adds descriptors to ordering labels (#3892) --- packages/insomnia-app/app/common/constants.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/insomnia-app/app/common/constants.ts b/packages/insomnia-app/app/common/constants.ts index 59a7064530..89acec6b79 100644 --- a/packages/insomnia-app/app/common/constants.ts +++ b/packages/insomnia-app/app/common/constants.ts @@ -318,8 +318,8 @@ export const SORT_ORDERS = [ SORT_TYPE_ASC, ]; export const sortOrderName: Record = { - [SORT_NAME_ASC]: 'Name Ascending', - [SORT_NAME_DESC]: 'Name Descending', + [SORT_NAME_ASC]: 'Name Ascending (A-Z)', + [SORT_NAME_DESC]: 'Name Descending (Z-A)', [SORT_CREATED_ASC]: 'Oldest First', [SORT_CREATED_DESC]: 'Newest First', [SORT_HTTP_METHOD]: 'HTTP Method', @@ -343,8 +343,8 @@ export const SPACE_SORT_ORDERS = [ ]; export const spaceSortOrderName: Record = { - [SORT_NAME_ASC]: 'Name Ascending', - [SORT_NAME_DESC]: 'Name Descending', + [SORT_NAME_ASC]: 'Name Ascending (A-Z)', + [SORT_NAME_DESC]: 'Name Descending (Z-A)', [SORT_CREATED_ASC]: 'Oldest First', [SORT_CREATED_DESC]: 'Newest First', [SORT_MODIFIED_DESC]: 'Last Modified',