-
Notifications
You must be signed in to change notification settings - Fork 14.4k
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
refactor: Remove dead code from the Word Cloud plugin #29594
refactor: Remove dead code from the Word Cloud plugin #29594
Conversation
e4671ac
to
97a6217
Compare
97a6217
to
84b2188
Compare
/testenv up |
export default function transformProps(chartProps: ChartProps): WordCloudProps { | ||
const { width, height, formData, queriesData } = chartProps; | ||
const { encoding, rotation, sliceId, colorScheme } = | ||
formData as WordCloudFormData; | ||
const { |
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.
The index file of the plugin was referencing the legacy transformProps
function. I just copied the code from there here and deleted that file.
@michael-s-molina Ephemeral environment spinning up at http://34.211.94.59:8080. Credentials are |
Ephemeral environment shutdown and build artifacts deleted. |
@supersetbot label 4.1 |
(cherry picked from commit 85b6694)
SUMMARY
The Word Cloud plugin had a legacy version which was not being used anymore. This PR removes that dead code including the associated tests.
TESTING INSTRUCTIONS
CI should be sufficient.
ADDITIONAL INFORMATION