-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adds notes section #162
adds notes section #162
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good! 1 small naming nit
arches_lingo/src/arches_lingo/components/scheme/report/SchemeNote.vue
Outdated
Show resolved
Hide resolved
arches_lingo/src/arches_lingo/components/scheme/report/SchemeNote.vue
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, just found one thing I missed during the first pass
/> | ||
</div> | ||
<div> | ||
{{ $gettext("Contributors") }}: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one small thing I missed first pass, mind wrapping these interpolations in a span or div or something? Prevents "naked" strings in the HTML
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🏓
</template> | ||
<template #drawer="{ rowData }"> | ||
<div> | ||
<span>{{ $gettext("Bibliographic Sources") }}:</span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
had to look up i18n patterns for this: TIL -- the colon should go inside the gettext
call.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good to know, guess it makes sense from an RTL text perspective.
/> | ||
</div> | ||
<div> | ||
<span>{{ $gettext("Contributors") }}:</span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
@delete-string="deleteSectionValue" | ||
> | ||
<template #name="{ rowData }"> | ||
{{ (rowData as SchemeStatement).statement_content_n1 }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm unsure, but I think this needs span
wrapping as well
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no objections. 🏓
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀 🚀
<span>{{ | ||
(rowData as SchemeStatement).statement_content_n1 | ||
}}</span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol bad formatting but I wont block 😉
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was actually automatic from the pre-commit hook, I didn't do that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I figured that was the case 😁
0868230
into
adg/146-genericize-label-viewer
* adds notes section * fix naming nit * wrap gettext in spans * pr feedback * pr feedback
Adds notes section with generic metastring viewer.