We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, each slide breaks on a double newline (either \n\n or \r\n - as seen in resources/js/store/dataStore.tsL17-18)
\n\n
\r\n
I'd like to add a field in Filament when creating a presentation called Slide Delimiter, which is a dropdown with 2 options:
This involves:
slide_delimiter
presentations
PresentationController#show
slideDelimiter
resources/js/Pages/Slide.ts
dataStore
processData
This task is a bit challenging as it is, so tests can be added later for this. But if you would like to add tests, then consider adding:
I'd put the new field between the Description and Thumbnail fields:
The text was updated successfully, but these errors were encountered:
alkrauss48
No branches or pull requests
Currently, each slide breaks on a double newline (either
\n\n
or\r\n
- as seen in resources/js/store/dataStore.tsL17-18)I'd like to add a field in Filament when creating a presentation called Slide Delimiter, which is a dropdown with 2 options:
This involves:
slide_delimiter
on thepresentations
as a non-nullable string, with a default value of\n\n
slide_delimiter
property on the Presentation modelPresentationController#show
action, via aslideDelimiter
Inertia propertyresources/js/Pages/Slide.ts
, and setting that on thedataStore
as a new property\n\n
processData
function, when splitting the content into slides.Optional - Add Tests
This task is a bit challenging as it is, so tests can be added later for this. But if you would like to add tests, then consider adding:
I'd put the new field between the Description and Thumbnail fields:
The text was updated successfully, but these errors were encountered: