-
Notifications
You must be signed in to change notification settings - Fork 2
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
JTE/PKFE-42 #52
JTE/PKFE-42 #52
Conversation
justinnas
commented
Sep 2, 2024
- Moved editor toolbar groups into seperate files;
- Moved BaseLayout into routes;
- Moved Sidebar to a seperate file;
- Made Sidebar icons clickable;
- Made it so the icons would be highlighted based on page being visited;
- Fixed other minor errors.
@@ -8,6 +8,7 @@ interface Props { | |||
height?: string; | |||
borderRadius?: string; | |||
onClick?: () => void; | |||
isActive?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also add disabled for unusable buttons like macros to not be available (disabled)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
import { SettingsDialog, ShortcutsDialog } from '@/components/dialogs'; | ||
import { Sidebar } from '@/components/sidebar/sidebar'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add index.ts
to remove redundancy in pathing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved!