Skip to content

Commit

Permalink
modify images
Browse files Browse the repository at this point in the history
  • Loading branch information
tiffanyqi committed Oct 4, 2024
1 parent 7c24637 commit 364fa2e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion components/changelog-index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion pages/docs/data-structure/concepts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
|----------|-------------------|
Expand Down
File renamed without changes
File renamed without changes

0 comments on commit 364fa2e

Please sign in to comment.