Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
3a844b79
Commit
3a844b79
authored
Oct 30, 2017
by
Filipa Lacerda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix queried element
parent
46d8209e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
app/assets/javascripts/importer_status.js
app/assets/javascripts/importer_status.js
+3
-3
No files found.
app/assets/javascripts/importer_status.js
View file @
3a844b79
...
...
@@ -72,10 +72,10 @@ class ImporterStatus {
// eslint-disable-next-line consistent-return
export
default
function
initImporterStatus
()
{
const
importerStatus
=
$
(
'
.js-importer-status
'
);
const
data
=
importerStatus
.
dataset
;
const
importerStatus
=
document
.
querySelector
(
'
.js-importer-status
'
);
if
(
importerStatus
.
length
)
{
if
(
importerStatus
)
{
const
data
=
importerStatus
.
dataset
;
return
new
ImporterStatus
(
data
.
jobsImportPath
,
data
.
importPath
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment