-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
feat: preferences settings panel to add display switches with copyright #4601
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ import SelectItem from '../select-item.vue'; | |
import SwitchItem from '../switch-item.vue'; | ||
|
||
defineOptions({ | ||
name: 'PreferenceBreadcrumbConfig', | ||
name: 'PreferenceHeaderConfig', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Old component name still in use: PreferenceBreadcrumbConfig The old component name 'PreferenceBreadcrumbConfig' is still used in 🔗 Analysis chainApprove component name change and verify usage. The component name change from 'PreferenceBreadcrumbConfig' to 'PreferenceHeaderConfig' is appropriate and aligns with the component's purpose. This change improves clarity and maintainability. To ensure this change doesn't break any existing imports or usages, please run the following script to check for any occurrences of the old component name: If the first command returns any results, those files need to be updated to use the new component name. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Search for any remaining usage of the old component name 'PreferenceBreadcrumbConfig'
# Test: Search for the old component name. Expect: No results.
rg --type vue --type ts --type js 'PreferenceBreadcrumbConfig'
# Test: Search for the new component name. Expect: At least one result (this file).
rg --type vue --type ts --type js 'PreferenceHeaderConfig'
Length of output: 177 Script: #!/bin/bash
# Description: Search for any remaining usage of the old component name 'PreferenceBreadcrumbConfig'
# Test: Search for the old component name. Expect: No results.
rg 'PreferenceBreadcrumbConfig' -g '*.vue' -g '*.ts' -g '*.js'
# Test: Search for the new component name. Expect: At least one result (this file).
rg 'PreferenceHeaderConfig' -g '*.vue' -g '*.ts' -g '*.js'
Length of output: 345 |
||
}); | ||
|
||
defineProps<{ disabled: 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.
💡 Codebase verification
Remaining references to 'PreferenceBreadcrumbConfig' detected.
The old component name is still referenced in the following location:
packages/effects/layouts/src/widgets/preferences/blocks/layout/breadcrumb.vue:7
Please update this reference to
PreferenceFooterConfig
to ensure consistency across the codebase.🔗 Analysis chain
LGTM! Component name updated correctly.
The component name change from 'PreferenceBreadcrumbConfig' to 'PreferenceFooterConfig' improves clarity and consistency with the file name and component's purpose.
To ensure this change doesn't introduce any issues, please verify that all references to this component have been updated throughout the codebase. Run the following script to check for any remaining occurrences of the old component name:
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 90
Script:
Length of output: 178