Skip to content

Commit

Permalink
Maybe Fix #4052. Missed an absolute URL. (#4187)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmeltzer authored and snipe committed Oct 9, 2017
1 parent e29d878 commit e9f10dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/importer/import.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<span class="btn btn-info fileinput-button">
<span>Select Import File...</span>
<!-- The file input field used as target for the file upload widget -->
<input id="fileupload" type="file" name="files[]" data-url="/api/v1/imports" accept="text/csv">
<input id="fileupload" type="file" name="files[]" data-url="{{ route('api.imports.index') }}" accept="text/csv">
</span>
</div>
<div class="col-md-9" v-show="progress.visible" style="padding-bottom:20px">
Expand Down

0 comments on commit e9f10dd

Please sign in to comment.