fix: use @timezone instead of assigns[:timezone] in footer calls
This commit is contained in:
parent
442a79baa7
commit
d8ee0320dc
1 changed files with 3 additions and 3 deletions
|
|
@ -68,7 +68,7 @@ defmodule ToweropsWeb.Layouts do
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<.footer timezone={assigns[:timezone] || "UTC"} />
|
||||
<.footer timezone={@timezone} />
|
||||
</div>
|
||||
|
||||
<.flash_group flash={@flash} />
|
||||
|
|
@ -252,7 +252,7 @@ defmodule ToweropsWeb.Layouts do
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<.footer timezone={assigns[:timezone] || "UTC"} />
|
||||
<.footer timezone={@timezone} />
|
||||
</div>
|
||||
|
||||
<.flash_group flash={@flash} />
|
||||
|
|
@ -423,7 +423,7 @@ defmodule ToweropsWeb.Layouts do
|
|||
</div>
|
||||
</main>
|
||||
|
||||
<.footer timezone={assigns[:timezone] || "UTC"} />
|
||||
<.footer timezone={@timezone} />
|
||||
</div>
|
||||
|
||||
<.flash_group flash={@flash} />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue