Fixed some UX issue with the Import/Export tool.

- Couldn't click on the filename control once gets an error.
- Encoding is not in alphabetical order.
This commit is contained in:
Khushboo Vashi
2017-08-09 16:44:29 +05:30
committed by Ashesh Vashi
parent 5141debae7
commit c4ca781ce2
4 changed files with 19 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ SELECT *
FROM
(SELECT pg_encoding_to_char(s.i) AS encoding
FROM (SELECT generate_series(0, 100, 1) as i) s) a
WHERE encoding != '';
WHERE encoding != '' ORDER BY encoding;
{#
-- For future use, Do not delete

View File

@@ -5,7 +5,7 @@
SELECT * FROM
(SELECT pg_encoding_to_char(s.i) AS encoding
FROM (SELECT generate_series(0, 100, 1) as i) s) a
WHERE encoding != '';
WHERE encoding != '' ORDER BY encoding;
{#
-- For future use, Do not delete