-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #560 from c2corg/association-editor-modif-outing
Association editor - Modification of outing's link
- Loading branch information
Showing
4 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/components/association-editor/AssociationOutingLink.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<template> | ||
<document-link :document="outing" class="pretty-outing-link has-hover-background"> | ||
<span class="has-text-normal"> | ||
{{ outing.date_start }} • {{ outing.author.name }} - | ||
</span> | ||
<document-title :document="outing" /> | ||
</document-link> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
props: { | ||
outing: { | ||
type: Object, | ||
required: true | ||
} | ||
} | ||
}; | ||
</script> | ||
|
||
<style scoped lang="scss"> | ||
.pretty-outing-link{ | ||
display:block | ||
} | ||
</style> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters