Skip to content

Commit

Permalink
Use correct partial path
Browse files Browse the repository at this point in the history
We moved all the shared partials into `webui/shared` directory.
  • Loading branch information
David Kang committed Sep 2, 2019
1 parent 702a21e commit ed948cc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/api/app/controllers/webui/request_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@ def show
end

def sourcediff
render partial: 'shared/editor', locals: { text: params[:text],
mode: 'diff', style: { read_only: true },
height: 'auto', width: '750px',
no_border: true, uid: params[:uid] }
render partial: 'webui/shared/editor', locals: { text: params[:text],
mode: 'diff', style: { read_only: true },
height: 'auto', width: '750px',
no_border: true, uid: params[:uid] }
end

def changerequest
Expand Down

0 comments on commit ed948cc

Please sign in to comment.