Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated several relevant packages to latest versions #45

Merged
merged 22 commits into from
Oct 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1901e80
update gitignore to properly ignore .env file
rhit-chanb Oct 19, 2022
30cad7d
update second gitignore?
rhit-chanb Oct 19, 2022
62a7186
maybe gitignore works now?
rhit-chanb Oct 19, 2022
6409d38
add reference to new creds env variable
rhit-chanb Oct 19, 2022
22b4bba
update packages to "wanted" level
rhit-chanb Oct 19, 2022
572c123
Merge branch 'backend-env-var-firebase' into package-updating-latest
rhit-chanb Oct 19, 2022
3d662db
before commenting out all icons
rhit-chanb Oct 19, 2022
b9acd43
updated icons/icon names to new package
rhit-chanb Oct 19, 2022
561fb3c
finish updating heroicons, remove eslint
rhit-chanb Oct 19, 2022
43d3ab1
axe unused dependencies
rhit-chanb Oct 19, 2022
b1112c3
Merge branch 'main' into package-updating-latest
rhit-chanb Oct 19, 2022
9549039
remove unused web-vitals package
rhit-chanb Oct 19, 2022
25c1f36
updated tailwind, removed another unused package
rhit-chanb Oct 20, 2022
7ab79ea
remove unused NewExp copy.js
rhit-chanb Oct 20, 2022
687017c
remove unused subpackages of mantine
rhit-chanb Oct 20, 2022
1cb2260
re add hooks package
rhit-chanb Oct 20, 2022
4b513cb
functionality restored to dropzone after updating
rhit-chanb Oct 24, 2022
4b97389
Final Package upgrade (hopefully)
rhit-chanb Oct 24, 2022
41653bd
Merge branch 'main' into package-updating-latest
rhit-chanb Oct 24, 2022
66779f5
add annotation to commented code for dropzone
rhit-chanb Oct 24, 2022
954800b
remove modified mantine example dropzone
rhit-chanb Oct 24, 2022
943924c
Remove unnecessary gitignore line
rhit-chanb Oct 24, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions apps/frontend/components/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ import { Fragment, useState, useEffect } from 'react';
import { Disclosure, Menu, Transition } from '@headlessui/react';
import Link from 'next/link';
import {
BadgeCheckIcon,
CheckBadgeIcon,
ChevronDownIcon,
ChevronRightIcon,
CollectionIcon,
SearchIcon,
SortAscendingIcon,
StarIcon,
} from '@heroicons/react/solid';
RectangleStackIcon,
MagnifyingGlassIcon,
BarsArrowUpIcon,
StarIcon

} from '@heroicons/react/24/solid';
import { MenuAlt1Icon, XIcon } from '@heroicons/react/outline';
import { Logo } from './utils';
import classNames from 'classnames';
Expand Down Expand Up @@ -237,7 +238,7 @@ const SearchBar = (props) => {
</label>
<div className='relative text-blue-200 focus-within:text-gray-400'>
<div className='absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none'>
<SearchIcon className='h-5 w-5' aria-hidden='true' />
<MagnifyingGlassIcon className='h-5 w-5' aria-hidden='true' />
</div>
<input
id='search'
Expand Down Expand Up @@ -339,7 +340,7 @@ export default function Dashboard({ user, experimentss }) {
{/* Meta info */}
<div className='flex flex-col space-y-6 sm:flex-row sm:space-y-0 sm:space-x-8 xl:flex-col xl:space-x-0 xl:space-y-6'>
<div className='flex items-center space-x-2'>
<BadgeCheckIcon
<CheckBadgeIcon
className='h-5 w-5 text-gray-400'
aria-hidden='true'
/>
Expand All @@ -348,7 +349,7 @@ export default function Dashboard({ user, experimentss }) {
</span>
</div>
<div className='flex items-center space-x-2'>
<CollectionIcon
<RectangleStackIcon
className='h-5 w-5 text-gray-400'
aria-hidden='true'
/>
Expand All @@ -369,7 +370,7 @@ export default function Dashboard({ user, experimentss }) {
<h1 className='flex-1 text-lg font-medium'>Projects</h1>
<Menu as='div' className='relative'>
<Menu.Button className='w-full bg-white border border-gray-300 rounded-md shadow-sm px-4 py-2 inline-flex justify-center text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-blue-500'>
<SortAscendingIcon
<BarsArrowUpIcon
className='mr-3 h-5 w-5 text-gray-400'
aria-hidden='true'
/>
Expand Down
Loading