Tags
Tags copied to clipboard
Dont delete when tags are empty
if i send an empty string tags will not deleted; i patch with this:
// Deleting tags
if(isset($data['tags']) && trim($data['tags']) == '') {
$enitity->tags = [];
}
Is this correct or the plugin should do this and i missing something?