Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vospace-ui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
VOSpace INAF
vospace-ui
Commits
279d4506
Commit
279d4506
authored
3 years ago
by
Sonia Zorba
Browse files
Options
Downloads
Patches
Plain Diff
Fixed aesthetic issue on loading animation during upload
parent
baf16615
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
vospace-ui-frontend/src/api/server/index.js
+1
-1
1 addition, 1 deletion
vospace-ui-frontend/src/api/server/index.js
vospace-ui-frontend/src/store.js
+2
-1
2 additions, 1 deletion
vospace-ui-frontend/src/store.js
with
3 additions
and
2 deletions
vospace-ui-frontend/src/api/server/index.js
+
1
−
1
View file @
279d4506
...
@@ -124,7 +124,7 @@ export default {
...
@@ -124,7 +124,7 @@ export default {
parentPath
:
path
,
parentPath
:
path
,
files
:
files
files
:
files
}
}
});
}
,
false
);
},
},
uploadFile
(
url
,
file
)
{
uploadFile
(
url
,
file
)
{
let
formData
=
new
FormData
();
let
formData
=
new
FormData
();
...
...
This diff is collapsed.
Click to expand it.
vospace-ui-frontend/src/store.js
+
2
−
1
View file @
279d4506
...
@@ -183,7 +183,8 @@ export default new Vuex.Store({
...
@@ -183,7 +183,8 @@ export default new Vuex.Store({
dispatch
(
'
setPath
'
,
state
.
path
);
dispatch
(
'
setPath
'
,
state
.
path
);
});
});
},
},
uploadFiles
({
state
,
dispatch
},
files
)
{
uploadFiles
({
state
,
commit
,
dispatch
},
files
)
{
commit
(
'
setLoading
'
,
true
);
let
names
=
[];
let
names
=
[];
for
(
let
file
of
files
)
{
for
(
let
file
of
files
)
{
names
.
push
(
file
.
name
);
names
.
push
(
file
.
name
);
...
...
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