WSL/SLF GitLab Repository
Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
EnviDat
EnviDat-Frontend
Commits
4ae18644
Commit
4ae18644
authored
Oct 12, 2022
by
Dominik Haas
Browse files
fix(AuthorCard): fixed search in editMetadataPage context
parent
0d2d1264
Pipeline
#1476
failed with stages
in 21 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
src/modules/user/components/EditMetadataAuthors.vue
View file @
4ae18644
...
...
@@ -36,7 +36,7 @@
<AuthorCard
v-bind=
"authorEditingProperties(author)"
@
openButtonClicked=
"catchEditAuthorClick(author)"
@
catchSearchAuthor=
"catchAuthorSearchClick
(author.fullName)
"
@
catchSearchAuthor=
"catchAuthorSearchClick"
>
<template
#dataCreditCurrentDataset
>
...
...
src/modules/user/components/MetadataEditPage.vue
View file @
4ae18644
...
...
@@ -203,7 +203,7 @@ export default {
authorsMapLoading
()
{
const
map
=
this
.
authorsMap
;
return
Object
.
keys
(
map
).
length
<=
0
;
return
!
map
||
Object
.
keys
(
map
).
length
<=
0
;
},
currentComponentLoading
()
{
const
stepKey
=
getStepFromRoute
(
this
.
$route
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment