fix slidetypes

This commit is contained in:
Chris Cochrun 2025-08-04 14:49:42 -05:00
parent ee5481f8db
commit 834b21b7d2

View file

@ -66,7 +66,9 @@ impl From<SlideType> for String {
SlideType::Song => "song".to_owned(), SlideType::Song => "song".to_owned(),
SlideType::Video => "video".to_owned(), SlideType::Video => "video".to_owned(),
SlideType::Image => "image".to_owned(), SlideType::Image => "image".to_owned(),
SlideType::Presentation(_) => "presentation".to_owned(), SlideType::Presentation(PresType::Generic) => "presentation".to_owned(),
SlideType::Presentation(PresType::Html) => "html".to_owned(),
SlideType::Presentation(PresType::Pdf) => "pdf".to_owned(),
SlideType::Content => "content".to_owned(), SlideType::Content => "content".to_owned(),
} }
} }