Tac Tacelosky

Results 500 issues of Tac Tacelosky

https://www.postgresql.org/docs/current/ddl-generated-columns.html full text search seems like a perfect use of generated columns, e.g. ALTER TABLE se_details ADD COLUMN ts tsvector GENERATED ALWAYS AS (to_tsvector('english', event_narrative)) STORED; Since the column with...

Prepare for Symfony 6 by removing deprecations.

I've started to work on fixing deprecation warnings so that this excellent app can run under Symfony 6 when it comes out in a few weeks. Symfony 6 requires PHP8,...

I'm installing this on a Windows box (my dev environment) and wanted to point out the issues I ran across. I'm very new to Symfony. I ran into trouble with...

I've been running phpstan level 6, and see this code ```php if (isset($this->footnotes[$node_id])) { $num =& $this->footnotes_numbers[$node_id]; if (!isset($num)) { ``` I'm wondering what the purpose of =& is. Also,...

Congrats on the release of AdminLTEBundle 3.3! It appears that this bundle is based on Bootstrap 3 and the AdminLTE package version 2 (which uses version 3). AdminLTE (from Colorlib)...

With Symfony 6 around the corner and PHP 8 nearly a year old, and Bootstrap now at 5.1, I'd like to brainstorm about a new-and-improved branch of AdminLTEBundle, using the...

When I add a basic table (https://getbootstrap.com/docs/4.0/content/tables/#table-head-options) to the demo home page, using standard bootstrap classes, the styling isn't applied. ```html # First Last Handle ``` ![image](https://user-images.githubusercontent.com/619585/81740977-cbcf6680-946b-11ea-9c62-9072a92f14f7.png) When I try...

adminlte-v3

I'm trying to implement the top menu from adminlte in the bundle. ![image](https://user-images.githubusercontent.com/619585/81503134-f83e8380-92af-11ea-8e1b-08726af27808.png) But the top navbar isn't rendering right: ![image](https://user-images.githubusercontent.com/619585/81503384-4e5ff680-92b1-11ea-8c36-e603c4f6bc1a.png) https://shakespeare-plays.herokuapp.com/typography My request is that the bundle add a...

adminlte-v3

in Partials/_menu.html.twig, the template to render KNP Menus, the link to the label is missing for the adminlte_3 branch. ```twig {% block spanElement %} {% import _self as selfMacros %}...