Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
funkwhale
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JocelynDelalande
funkwhale
Commits
04ae5c86
Verified
Commit
04ae5c86
authored
7 years ago
by
Eliot Berriot
Browse files
Options
Downloads
Patches
Plain Diff
Fixed wrong URL construction in ajax call
parent
cadf3f31
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG
+5
-1
5 additions, 1 deletion
CHANGELOG
front/src/components/library/radios/Filter.vue
+2
-1
2 additions, 1 deletion
front/src/components/library/radios/Filter.vue
with
7 additions
and
2 deletions
CHANGELOG
+
5
−
1
View file @
04ae5c86
...
...
@@ -2,10 +2,14 @@ Changelog
=========
0.3.
4
(Unreleased)
0.3.
6
(Unreleased)
------------------
0.3.5 (2018-01-07)
------------------
- Fixed wrong URL construction in ajax call
0.3.4 (2018-01-07)
...
...
This diff is collapsed.
Click to expand it.
front/src/components/library/radios/Filter.vue
+
2
−
1
View file @
04ae5c86
...
...
@@ -112,8 +112,9 @@ export default {
selector
.
push
(
'
.autocomplete
'
)
settings
.
fields
=
f
.
autocomplete_fields
settings
.
minCharacters
=
1
let
backendUrl
=
config
.
BACKEND_URL
||
window
.
location
.
protocol
+
'
//
'
+
window
.
location
.
hostname
+
'
:
'
+
window
.
location
.
port
settings
.
apiSettings
=
{
url
:
config
.
BACKEND_URL
+
f
.
autocomplete
+
'
?
'
+
f
.
autocomplete_qs
,
url
:
backendUrl
+
f
.
autocomplete
+
'
?
'
+
f
.
autocomplete_qs
,
beforeXHR
:
function
(
xhrObject
)
{
xhrObject
.
setRequestHeader
(
'
Authorization
'
,
self
.
$store
.
getters
[
'
auth/header
'
])
return
xhrObject
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment