-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Dashboard Api Controller: call UpdateComponentCommand only with modified params #4403
base: 2.4
Are you sure you want to change the base?
Conversation
null, | ||
null, | ||
Binput::get('status'), | ||
$component->link, | ||
$component->order, | ||
$component->group_id, | ||
$component->enabled, | ||
$component->meta, | ||
$component->tags, | ||
null, | ||
null, | ||
null, | ||
null, | ||
null, | ||
null, |
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.
This definitely doesn't look right to me...
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.
Hum.. that's the same logic implemented anywhere else? Example from ./app/Bus/Handlers/Commands/Incident/CreateIncidentCommandHandler.php:
// Update the component.
if ($component = Component::find($command->component_id)) {
execute(new UpdateComponentCommand(
Component::find($command->component_id),
null,
null,
$command->component_status,
null,
null,
null,
null,
null,
null,
true // Silent mode
));
To see the problem, try updating a component with no flag in the dashboard multiple times, and have a look to flags in DB after each update.
Pierre
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.
To see the problem, try updating a component with no flag in the dashboard multiple times, and have a look to flags in DB after each update.
I mean: with my PR's merged last week. They broke components updates from the gui. The current PR fix them.
After merging #4402, changing a component state with no tags creates a tag "[]" in DB (an empty array to string).
Fix: calls to UpdateComponentCommand from dash controller should be done only on modified params, as it is done on incident creation/updates.