laravel / nova-issues

554 stars 34 forks source link

Missing `getStoragePath` implementation for a Markdown field #5369

Closed riabiy closed 1 year ago

riabiy commented 1 year ago

Description:

If you add a Markdown field with files and it they try to remove the whole resource -> it fails. Very similar to this issue. I'd say identical.

Detailed steps to reproduce the issue on a fresh Nova installation:

Fix

Well, the fix is same

<?php
//...
class FixedMarkdown extends Markdown
{
    public function getStoragePath()
    {
        return null;
    }
}

but since Trix implements I assume it's "a bug" here too, cause both are WYSYWIG editors.

github-actions[bot] commented 1 year ago

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.