Update personal_books_controller.rb

This commit is contained in:
chiu 2019-08-14 15:13:10 +08:00
parent b16553aa19
commit 2c1e8bdde2
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class PersonalBooksController < ApplicationController
when "author_type"
t << {"value" => (book.book_author_types.collect{|bat| bat.title}.join(", ") rescue "")}
when "language"
t << {"value" => (!book.language.nil? t("personal_book.#{book.language}") : "")}
t << {"value" => (!book.language.nil? ? t("personal_book.#{book.language}") : "")}
else
t << {"value" => book.send(fs)}
end