diff --git a/components/changelog-index.js b/components/changelog-index.js index b2f92a78d2..7c23746ff3 100644 --- a/components/changelog-index.js +++ b/components/changelog-index.js @@ -53,7 +53,8 @@ const renderMedia = (page) => { }; export default function ChangelogIndex({ more = "Read more" }) { - const allPages = getPagesUnderRoute("/changelogs"); + // naturally sorts pages from a-z rather than z-a + const allPages = getPagesUnderRoute("/changelogs").reverse(); const itemsPerPage = 10; const [displayedPages, setDisplayedPages] = useState([]); const [pageIndex, setPageIndex] = useState(0); diff --git a/pages/docs/data-structure/concepts.mdx b/pages/docs/data-structure/concepts.mdx index ef2467dddf..73ca4988ee 100644 --- a/pages/docs/data-structure/concepts.mdx +++ b/pages/docs/data-structure/concepts.mdx @@ -4,7 +4,7 @@ Mixpanel data is stored and isolated within a [project](/docs/orgs-and-projects/managing-projects). At this time, you cannot query data across multiple projects. Mixpanel supports a few different categories of data that can be used for analysis: events, user profiles, group profiles, and lookup tables. In data warehouse parlance, events make up the fact table while user profiles, group profiles, and lookup tables are dimension tables. -![Data Model Overview](/Data%20Model%20Overview.png) +![Data Model Overview](/Data_Model_Overview.png) | Types | Description | |----------|-------------------| diff --git a/public/Data%20Model%20Overview.png b/public/Data_Model_Overview.png similarity index 100% rename from public/Data%20Model%20Overview.png rename to public/Data_Model_Overview.png diff --git a/public/changelog/revenueconversion (2).png b/public/changelog/revenueconversion_(2).png similarity index 100% rename from public/changelog/revenueconversion (2).png rename to public/changelog/revenueconversion_(2).png