Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
DBRepo
Manage
Activity
Members
Labels
Plan
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FAIR Data Austria DB Repository
DBRepo
Commits
f19f111c
Commit
f19f111c
authored
3 years ago
by
Kirill Stytsenko
Browse files
Options
Downloads
Patches
Plain Diff
Linting
eslint . --ext .js,.vue --fix Former-commit-id:
02bb4079
parent
09d6ce2e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
fda-ui/components/DBToolbar.vue
+3
-3
3 additions, 3 deletions
fda-ui/components/DBToolbar.vue
fda-ui/components/QueryList.vue
+1
-1
1 addition, 1 deletion
fda-ui/components/QueryList.vue
fda-ui/test/e2e/database.js
+1
-1
1 addition, 1 deletion
fda-ui/test/e2e/database.js
with
5 additions
and
5 deletions
fda-ui/components/DBToolbar.vue
+
3
−
3
View file @
f19f111c
...
...
@@ -29,9 +29,9 @@
<v-tab
:to=
"`/container/$
{$route.params.container_id}/database/${databaseId}/query`">
Queries
</v-tab>
<!--
<v-tab
:to=
"`/container/$
{$route.params.container_id}/database/${databaseId}/admin`">-->
<!-- Admin-->
<!--
</v-tab>
-->
<!--
<v-tab
:to=
"`/container/$
{$route.params.container_id}/database/${databaseId}/admin`">-->
<!-- Admin-->
<!--
</v-tab>
-->
</v-tabs>
</
template
>
</v-toolbar>
...
...
This diff is collapsed.
Click to expand it.
fda-ui/components/QueryList.vue
+
1
−
1
View file @
f19f111c
...
...
@@ -10,7 +10,7 @@
<v-expansion-panels
v-if=
"!loading && queries.length > 0"
accordion
>
<v-expansion-panel
v-for=
"(item, i) in queries"
:key=
"i"
@
click=
"details(item)"
>
<v-expansion-panel-header>
<span
v-bind
:class=
"
{'font-weight-black': item.identifier !== undefined}">
{{
title
(
item
)
}}
</span>
<span
:class=
"
{'font-weight-black': item.identifier !== undefined}">
{{
title
(
item
)
}}
</span>
</v-expansion-panel-header>
<v-expansion-panel-content>
<v-row
dense
>
...
...
This diff is collapsed.
Click to expand it.
fda-ui/test/e2e/database.js
+
1
−
1
View file @
f19f111c
const
test
=
require
(
'
ava
'
)
const
axios
=
require
(
'
axios
'
)
const
{
pageMacro
,
before
,
after
}
=
require
(
'
./_utils
'
)
const
axios
=
require
(
"
axios
"
);
test
.
before
(
before
)
test
.
after
(
after
)
...
...
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