Skip to content

Empty width attribute causes undesired SVG width #4

Open
@mikemartin

Description

@mikemartin

Screenshot:
Screenshot 2019-05-23 13 27 54

I'm thinking it might be better to not apply empty attributes to the SVG. Would it be possible to only return attributes if they have values?

 public function getSvgConfig()
  {
    // Get the config from the params
    $class = $this->getParam('class');
    $height = $this->getParam('height');
    $width = $this->getParam('width');

    // Add the config to an array and return it.
    return [
      'class' => ((false) ? null : $class),
      'height' => ((false) ? null : $height),
      'width' => ((false) ? null : $width)
    ];
  }

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions