Skip to content

Commit

Permalink
Fix glitch-only HAML linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire committed Dec 20, 2023
1 parent b2961da commit 9ac13bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/layouts/error.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
%title= safe_join([yield(:page_title), Setting.default_settings['site_title']], ' - ')
%meta{ content: 'width=device-width,initial-scale=1', name: 'viewport' }/
= javascript_pack_tag 'common', crossorigin: 'anonymous'
= render partial: 'layouts/theme', object: (@core || { pack: 'common' })
= render partial: 'layouts/theme', object: (@theme || { pack: 'error', flavour: 'glitch', common: { pack: 'common', flavour: 'glitch', skin: 'default' } })
= render partial: 'layouts/theme', object: @core || { pack: 'common' }
= render partial: 'layouts/theme', object: @theme || { pack: 'error', flavour: 'glitch', common: { pack: 'common', flavour: 'glitch', skin: 'default' } }
%body.error
.dialog
.dialog__illustration
Expand Down

0 comments on commit 9ac13bb

Please sign in to comment.