3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-04 23:05:41 +00:00

Removed space

This commit is contained in:
snipe
2025-11-17 13:09:08 +00:00
parent 401c83945d
commit 67032d068d

View File

@ -125,6 +125,6 @@ class DepartmentPresenter extends Presenter
return ($this->tag_color ? "<i class='fa-solid fa-fw fa-square' style='color: ".e($this->tag_color)."' aria-hidden='true'></i>" : '').'<a href="'.route('departments.show', e($this->id)).'">'.e($this->name).'</a>';
}
return ($this->tag_color ? "<i class='fa-solid fa-fw fa-square' style='color: ".e($this->tag_color)."' aria-hidden='true'></i> " : '').$this->name;
return ($this->tag_color ? "<i class='fa-solid fa-fw fa-square' style='color: ".e($this->tag_color)."' aria-hidden='true'></i>" : '').$this->name;
}
}