diff options
author | Thibaut Girka <thib@sitedethib.com> | 2019-02-17 12:53:51 +0100 |
---|---|---|
committer | Thibaut Girka <thib@sitedethib.com> | 2019-02-17 13:34:40 +0100 |
commit | cac75e01b8ba840ddfd09bc6ba1539a03d03880f (patch) | |
tree | a32ba53e056bf7c58b70829b646202dc2f36a2e0 | |
parent | 91c9cb602215a8feb2e171fadd580dfe4dd75830 (diff) |
Fix static error page to use the correct pack
-rw-r--r-- | app/views/layouts/error.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/layouts/error.html.haml b/app/views/layouts/error.html.haml index e9c474082..f8315afb5 100644 --- a/app/views/layouts/error.html.haml +++ b/app/views/layouts/error.html.haml @@ -7,7 +7,7 @@ %meta{ content: 'width=device-width,initial-scale=1', name: 'viewport' }/ = javascript_pack_tag "locales", integrity: true, crossorigin: 'anonymous' = render partial: 'layouts/theme', object: (@core || { pack: 'common' }) - = render partial: 'layouts/theme', object: (@theme || { pack: 'common', flavour: 'glitch', skin: 'default' }) + = render partial: 'layouts/theme', object: (@theme || { pack: 'error', flavour: 'glitch', common: { pack: 'common', flavour: 'glitch', skin: 'default' } }) %body.error .dialog .dialog__illustration |