Skip to content

Commit

Permalink
fix: Update tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioHerceg committed Jul 25, 2024
1 parent 7bef7d9 commit 49ba7ff
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Benchgraph is now hosted on the vercel memgraph.com site as github pages was giv

To deploy a new version:

(1) Build as normal
(1) Build as normal (npm run build:deploy)

(2) Edit the resulting html

Expand Down
2 changes: 1 addition & 1 deletion docs/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
<style>@charset "UTF-8";@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:url(Roboto-Regular.83f6acca8a27a93c.ttf) format("truetype")}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}html{box-sizing:border-box;font-size:16px}*,:after,:before{box-sizing:inherit}body{margin:0;padding:0;background:#e6e6e6;font-family:Roboto,Arial,sans-serif;font-weight:400;line-height:1.5;color:#231f20;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media print{*{background:0 0!important;box-shadow:none!important;color:#000!important;text-shadow:none!important}@page{margin:.5cm}}body,html{margin:0;height:100%;background-color:#fff}</style><link rel="stylesheet" href="styles.1c5f6be87e1d8d7e.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.1c5f6be87e1d8d7e.css"></noscript></head>
<body>
<app-root></app-root>
<script src="runtime.34774b385d4b3365.js" type="module"></script><script src="polyfills.3a6db06d89447d6c.js" type="module"></script><script src="main.3e4ffdecac05812d.js" type="module"></script>
<script src="runtime.34774b385d4b3365.js" type="module"></script><script src="polyfills.3a6db06d89447d6c.js" type="module"></script><script src="main.90cb3c576df362ca.js" type="module"></script>

</body></html>
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
<style>@charset "UTF-8";@font-face{font-family:Roboto;font-style:normal;font-weight:400;src:url(Roboto-Regular.83f6acca8a27a93c.ttf) format("truetype")}html{font-family:sans-serif;line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}html{box-sizing:border-box;font-size:16px}*,:after,:before{box-sizing:inherit}body{margin:0;padding:0;background:#e6e6e6;font-family:Roboto,Arial,sans-serif;font-weight:400;line-height:1.5;color:#231f20;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media print{*{background:0 0!important;box-shadow:none!important;color:#000!important;text-shadow:none!important}@page{margin:.5cm}}body,html{margin:0;height:100%;background-color:#fff}</style><link rel="stylesheet" href="styles.1c5f6be87e1d8d7e.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.1c5f6be87e1d8d7e.css"></noscript></head>
<body>
<app-root></app-root>
<script src="runtime.34774b385d4b3365.js" type="module"></script><script src="polyfills.3a6db06d89447d6c.js" type="module"></script><script src="main.3e4ffdecac05812d.js" type="module"></script>
<script src="runtime.34774b385d4b3365.js" type="module"></script><script src="polyfills.3a6db06d89447d6c.js" type="module"></script><script src="main.90cb3c576df362ca.js" type="module"></script>

</body></html>
1 change: 0 additions & 1 deletion docs/main.3e4ffdecac05812d.js

This file was deleted.

1 change: 1 addition & 0 deletions docs/main.90cb3c576df362ca.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/app/components/overview/overview.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ export const TOOLTIP_OF_CONDITION: Record<RunConfigCondition, string> = {
};

export const TOOLTIP_OF_PLATFORM: Record<Platform, string> = {
[Platform.AMD]: 'Ryzen 7 3800X, 64GB RAM',
[Platform.INTEL]: '2 x Xeon X5650 6C12T @ 2.67GHz, 144GB RAM',
[Platform.AMD]: 'r7a.4xlarge',
[Platform.INTEL]: 'r7i.4xlarge',
};

export const TOOLTIP_OF_DATASET_SIZE: Record<DatasetSize, string> = {
Expand Down
4 changes: 2 additions & 2 deletions src/app/components/selector/selector.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ export class SelectorComponent {
contributeLink = 'https://github.com/memgraph/memgraph/tree/master/tests/mgbench#raised_hands-contributions';

tooltipByVendor: Record<RunConfigVendor, string> = {
[RunConfigVendor.MEMGRAPH]: 'Memgraph 2.4',
[RunConfigVendor.NEO4J]: 'Neo4j Community Edition v5.1',
[RunConfigVendor.MEMGRAPH]: 'Memgraph 2.16',
[RunConfigVendor.NEO4J]: 'Neo4j Community Edition v5.19',
};

constructor(
Expand Down

0 comments on commit 49ba7ff

Please sign in to comment.