-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update project settings form layout and configure import sorting
Enhanced the user interface by adjusting the project settings form layout in 'ProjectSettings/index.tsx' and 'projects/[projectId]/boards/[boardId]/page.tsx'. Added configuration for improved import sorting using the '@trivago/prettier-plugin-sort-imports' package, specified the required order and enabled separation in '.prettierrc.json'. Updates were also made in 'Sidebar/index.tsx' and 'constants.ts' to refine view visibility conditions and regular expression patterns respectively. The import order of modules in several files have been re-arranged as per new configuration.
- Loading branch information
1 parent
eadbc2a
commit f632fc9
Showing
8 changed files
with
144 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
'use client'; | ||
|
||
import Dashboard from '@/components/Dashboard/Dashboard'; | ||
|
||
export default function Home() { | ||
return <Dashboard />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
export const REGEX_PROJECT_BOARD_BACKLOG = | ||
/\/projects\/\d+\/boards\/\d+\/backlog$/; | ||
export const REGEX_PROJECT_BOARD = /\/projects\/\d+\/boards\/\d+$/; | ||
export const REGEX_PROJECT_ISSUES = /\/projects\/\d+\/issues\/\d+$/; | ||
/^\/projects\/\d+\/boards\/\d+\/backlog$/; | ||
export const REGEX_PROJECT_BOARD = /^\/projects\/\d+\/boards\/\d+$/; | ||
export const REGEX_PROJECT_ISSUES = /^\/projects\/\d+\/issues\/\d+$/; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.