Skip to content

Commit

Permalink
Merge pull request #86 from comet-ml/caleb/staticfiles
Browse files Browse the repository at this point in the history
Update static paths
  • Loading branch information
dsblank authored Apr 5, 2023
2 parents bbf5b0c + 13afcf6 commit 31ae05d
Show file tree
Hide file tree
Showing 13 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/app/Settings/Buttons/GroupByButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const GroupByButton = () => {
return (
<>
<div className={cx('button-outline')} onClick={toggleOpen} ref={anchor}>
<img src="/group_placeholder.png" /> <span>Group by</span>
<img src="/kangas_images/group_placeholder.png" /> <span>Group by</span>
</div>
<Popover
anchorOrigin={{
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/Settings/Buttons/KangasButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const cx = classNames.bind(styles);

const KangasButton = () => (
<div className={cx("button-outline")} style={{border: 'unset'}}>
<img src="/favicon.png" />
<img src="/kangas_images/favicon.png" />
<span>Kangas</span>
</div>
);
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/Settings/Buttons/RowsButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const RowsButton = () => (
<DialogueModal
toggleElement={
<div className={cx("button-outline")}>
<img src="/columns_placeholder.png" /> <span>Rows</span>
<img src="/kangas_images/columns_placeholder.png" /> <span>Rows</span>
</div>
}
sx={{
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/Settings/Buttons/SelectButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const SelectButton = ({ columns }) => (
<DialogueModal
toggleElement={
<div className={cx("button-outline")}>
<img src="/columns_placeholder.png" /> <span>Columns</span>
<img src="/kangas_images/columns_placeholder.png" /> <span>Columns</span>
</div>
}
sx={{
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/Settings/Buttons/SortByButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const SortByButton = () => {
return (
<>
<div className={cx('button-outline')} onClick={toggleOpen} ref={anchor}>
<img src="/sort_icon.png" /> <span>Sort By</span>
<img src="/kangas_images/sort_icon.png" /> <span>Sort By</span>
</div>
<Popover
anchorOrigin={{
Expand Down
2 changes: 1 addition & 1 deletion frontend/app/head.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const Head = () => {
return (
<>
<link rel="icon" href="/favicon.png" />
<link rel="icon" href="/kangas_images/favicon.png" />
<title>Kangas - Data and Model Analysis</title>
</>
);
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 31ae05d

Please sign in to comment.