| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Assigning a has_one association for a persisted record saves the change immediately, so attempting to read a rich-text attribute on a persisted record without a corresponding ActionText::RichText would eagerly create one. Avoid assigning the rich text association to fix.
|
|
|
| |
Closes #35159.
|
|\
| |
| |
| | |
v6.0.0.beta3 release
|
| |
| |
| |
| |
| |
| |
| | |
* Update RAILS_VERSION
* Bundle
* rake update_versions
* rake changelog:header
|
|/ |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The Action Text installations appends `require("trix")` to the application.js file. The problem is that there isn't a line break in the beginning of the installation output, leading to syntax errors, e.g.:
```
import './application.scss'require("trix")
```
This commit moves the line break from the end to the beginning of the output, fixing it to:
```
import './application.scss'
require("trix")
```
|
| |
|
|
|
|
| |
Automate installing the appropriate packages with yarn and appending them to the default application.js pack.
|
|
|
|
| |
Fixes #33083
|
| |
|
| |
|
|
|