Added "Add record" button in kanban view column headers dropdown (#6649)
Closes #4629 Refactored `RecordBoardColumnNewOpportunityButton` and `RecordBoardColumnNewButton` to use the same logic in dropdown. I kept those hooks inside `record-board-column` where these buttons are. Let me know if it should be placed somewhere else. Also Added navigation state preservation when clicked on `edit from settings` Thanks :) --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com>
This commit is contained in:
@ -33,16 +33,19 @@ export default defineConfig(({ command, mode }) => {
|
||||
};
|
||||
|
||||
if (VITE_DISABLE_TYPESCRIPT_CHECKER === 'true') {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(
|
||||
`VITE_DISABLE_TYPESCRIPT_CHECKER: ${VITE_DISABLE_TYPESCRIPT_CHECKER}`,
|
||||
);
|
||||
}
|
||||
|
||||
if (VITE_DISABLE_ESLINT_CHECKER === 'true') {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(`VITE_DISABLE_ESLINT_CHECKER: ${VITE_DISABLE_ESLINT_CHECKER}`);
|
||||
}
|
||||
|
||||
if (VITE_BUILD_SOURCEMAP === 'true') {
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(`VITE_BUILD_SOURCEMAP: ${VITE_BUILD_SOURCEMAP}`);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user