-
Notifications
You must be signed in to change notification settings - Fork 6
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
fix: paging of incoming links works again #2108
base: main
Are you sure you want to change the base?
fix: paging of incoming links works again #2108
Conversation
@Component({ | ||
selector: 'app-incoming-links-property', | ||
template: ` <app-property-row | ||
tooltip="Indicates that this resource is referred to by another resource" |
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.
need translation
export class IncomingLinksPropertyComponent implements OnChanges { | ||
@Input({ required: true }) resource!: DspResource; | ||
|
||
get myLinks() { |
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.
consider renaming it to more meaningful name
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.
Two suggestions below.
@Component({ | ||
selector: 'app-incoming-links-property', | ||
template: ` <app-property-row | ||
tooltip="Indicates that this resource is referred to by another resource" |
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.
tooltip="Indicates that this resource is referred to by another resource" | |
tooltip="Indicates this resource is referred by another resource." |
…ng-of-incoming-links-is-broken
@Component({ | ||
selector: 'app-standoff-links-property', | ||
template: ` <app-property-row | ||
tooltip=" Represent a link in standoff markup from one resource to another" |
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.
tooltip=" Represent a link in standoff markup from one resource to another" | |
tooltip=" Represents a standoff markup link between two resources." |
resolves DEV-