mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-01 05:02:50 +08:00
Fix due/start date label render [SCI-6288] (#3690)
This commit is contained in:
parent
06577e2f8b
commit
5a7d285264
1 changed files with 2 additions and 2 deletions
|
@ -170,11 +170,11 @@ class MyModulesController < ApplicationController
|
|||
status: :ok,
|
||||
start_date_label: render_to_string(
|
||||
partial: 'my_modules/start_date_label.html.erb',
|
||||
locals: { my_module: @my_module, my_module_editable: true }
|
||||
locals: { my_module: @my_module, start_date_editable: true }
|
||||
),
|
||||
due_date_label: render_to_string(
|
||||
partial: 'my_modules/due_date_label.html.erb',
|
||||
locals: { my_module: @my_module, my_module_editable: true }
|
||||
locals: { my_module: @my_module, due_date_editable: true }
|
||||
),
|
||||
card_due_date_label: render_to_string(
|
||||
partial: 'my_modules/card_due_date_label.html.erb',
|
||||
|
|
Loading…
Reference in a new issue