fix error

This commit is contained in:
BOYA,CHIU 2021-08-24 23:36:16 +08:00
parent 4d26bcde24
commit 034339bcc2
1 changed files with 25 additions and 27 deletions

View File

@ -562,7 +562,6 @@ class EventNewsController < ApplicationController
"event_news_files" => files, "event_news_files" => files,
"event_news_links" => links, "event_news_links" => links,
"event_carousel_images" => event_carousel_images, "event_carousel_images" => event_carousel_images,
"data" => {
"speaker-head" => EventNewsCustomTitle.get_trans('speaker'), "speaker-head" => EventNewsCustomTitle.get_trans('speaker'),
"host-head" => EventNewsCustomTitle.get_trans('host'), "host-head" => EventNewsCustomTitle.get_trans('host'),
"notes-head" => t('event_news.notes'), "notes-head" => t('event_news.notes'),
@ -587,8 +586,7 @@ class EventNewsController < ApplicationController
"next_btn_title" => next_btn_title, "next_btn_title" => next_btn_title,
"carousel_display_style" => (event_carousel_images.count == 0 ? 'display: none' : "width: #{event_news.carousel_image_width};margin: auto;"), "carousel_display_style" => (event_carousel_images.count == 0 ? 'display: none' : "width: #{event_news.carousel_image_width};margin: auto;"),
"carousel_count" => event_carousel_images.count, "carousel_count" => event_carousel_images.count,
"place_text" => (event_news.place.present? rescue false) ? "#{EventNewsCustomTitle.get_trans("place")}: #{event_news.place}" : "" "place_text" => (event_news.place.present? rescue false) ? "#{EventNewsCustomTitle.get_trans("place")}: #{event_news.place}" : "",
},
"impressionist" => (event_news.is_preview ? nil : event_news), "impressionist" => (event_news.is_preview ? nil : event_news),
"url_to_edit"=>url_to_edit "url_to_edit"=>url_to_edit
} }