You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sortEnum.js 662B

123456789101112131415161718192021222324252627282930313233343536
  1. export const sortEnum = {
  2. INITIAL: {
  3. value: 0,
  4. mainText: "Sortiraj po",
  5. queryString: ""
  6. },
  7. POPULAR: {
  8. value: 1,
  9. mainText: "Najpopularnije",
  10. queryString: "popular"
  11. },
  12. NEW: {
  13. value: 2,
  14. mainText: "Najnovije",
  15. queryString: "newest"
  16. },
  17. OLD: {
  18. value: 3,
  19. mainText: "Najstarije",
  20. queryString: "oldest"
  21. }
  22. }
  23. export const sortAdminEnum = {
  24. INITIAL: {
  25. value: 0,
  26. mainText: "Sortiraj po"
  27. },
  28. GIVEN: {
  29. value: 1,
  30. mainText: "Date"
  31. },
  32. RECIEVED: {
  33. value: 2,
  34. mainText: "Dobijene"
  35. }
  36. }