Closed (fixed)
Project:
radix
Version:
6.0.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Dec 2024 at 21:42 UTC
Updated:
23 Jan 2025 at 13:19 UTC
Jump to comment: Most recent
Two semi-related issues:
1. The starter kit is missing the template for views--view-grid, which means the component will not be found / used.
2. The component for views--view-grid contains classes in the form col-N and row-N where N is the loop index. But this isn't how these classes work. The N is the number of columns of wide in a 12-column grid. See https://getbootstrap.com/docs/5.0/layout/columns/
Add the missing template and remove the incorrect classes.
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
deepali sardana commentedComment #4
deepali sardana commentedcreated mr please review it.
Comment #6
danchadwick commented@deepali sardana: I appreciate the MR, but that's not the right fix. The row-N and col-N classes need to be removed.
The above commit:
- Removes the row-N and col-N classes,
- Adds a trailing comma, missing from the classes
- Fixes the vertical alignment by adding a wrapping row class
- Adds the missing template to the starter kit.